here is the information you need : 1 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;
NOTE: les instructions ODS dans l'environnement SAS Studio risquent de désactiver certaines fonctionnalités de sortie.
73
74 DATA entree ;
75 INFILE '/folders/myfolders/sasuser.v94/Répétition 6/R6_01.csv' FIRSTOBS=2 DLM=";" DSD ;
76 INPUT QI Age Score ;
NOTE: The infile '/folders/myfolders/sasuser.v94/Répétition 6/R6_01.csv' is:
Nom du fichier=/folders/myfolders/sasuser.v94/Répétition 6/R6_01.csv,
Nom du propriétaire=sasdemo,Nom du groupe=sas,
Autorisation d'accès=-rw-rw-r--,
Modifié(e) le=29 mars 2018 16 h 18,
Taille de fichier (octets)=410
NOTE: 29 records were read from the infile '/folders/myfolders/sasuser.v94/Répétition 6/R6_01.csv'.
The minimum record length was 11.
The maximum record length was 12.
NOTE: The data set WORK.ENTREE has 29 observations and 3 variables.
NOTE: DATA statement used (Total process time):
real time 0.00 seconds
cpu time 0.01 seconds
77 PROC PRINT DATA=entree ;
78 RUN ;
NOTE: There were 29 observations read from the data set WORK.ENTREE.
NOTE: PROCEDURE PRINT used (Total process time):
real time 0.06 seconds
cpu time 0.07 seconds
79 ODS GRAPHICS OFF ;
80 PROC GLM DATA=entree ;
81 MODEL Score = Age QI ;
82 RUN ;
ERROR: Invalid characters were present in the data.
ERROR: Une erreur s'est produite lors du traitement des données texte.
ERROR: Invalid characters were present in the data.
NOTE: The SAS System stopped processing this step because of errors.
NOTE: PROCEDURE GLM used (Total process time):
real time 0.05 seconds
cpu time 0.05 seconds
83
84 PROC REG DATA=entree ;
85 MODEL Score = Age QI ;
86 RUN ;
87
NOTE: PROCEDURE REG used (Total process time):
real time 0.08 seconds
cpu time 0.08 seconds
88 PROC GLM DATA=entree ;
89 MODEL Score = QI Age ;
90 RUN ;
ERROR: Invalid characters were present in the data.
ERROR: Une erreur s'est produite lors du traitement des données texte.
ERROR: Invalid characters were present in the data.
NOTE: The SAS System stopped processing this step because of errors.
NOTE: PROCEDURE GLM used (Total process time):
real time 0.05 seconds
cpu time 0.04 seconds
91
92
93 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;
106
... View more