Search Results

7 résultats trouvés Page 1 / 1
Code SAS
Voir

SAS Viya Data Lifecycle: How to Upload, Persist, and Drop CAS Tables with PROC CAS

data _null_; file _webout; put 'Nom,Age,Ville'; put 'Alice,30,Paris'; put 'Bob,24,Lyon'; put 'Charlie,35,Marseille'; run; %let data_csv_file = '/tmp/simple_data.csv'; filename _csv_ temp filevar=_webout; data _null_; file _csv_; input; put _infile_; run; proc cas; ...

Code SAS
Voir

SAS Viya Data Lifecycle: How to Upload, Persist, and Drop CAS Tables with PROC CAS

/* Définir l'URL du fichier CSV */ %let csv_url = 'http://support.sas.com/documentation/onlinedoc/viya/exampledatasets/air.csv'; /* Créer un fichier temporaire pour le téléchargement */ filename _air_ temp; /* Télécharger le fichier CSV */ proc http method='get' url=&csv_url. out=_air_; run; /...

Code SAS
Voir

SAS Viya Data Lifecycle: How to Upload, Persist, and Drop CAS Tables with PROC CAS

/* Créer une table temporaire pour la démonstration */ data _null_; file _webout; put 'ID,Valeur'; put '1,10'; put '2,20'; put '3,30'; run; %let temp_data_file = %sysfunc(pathname(temp)); filename _tmp_data_ temp filevar=_webout; data _null_; file _tmp_data_; ...

Code SAS
Voir

From Memory to Disk: The Complete Guide to Saving CAS Tables as SAS7BDAT

data work.cholesterol; input Name $ Age Sex $ Cholesterol_Level; datalines; John_Doe 45 M 200 Jane_Smith 30 F 180 Peter_Jones 55 M 240 Alice_Brown 25 F 160 ; run; cas casauto sessopts=(caslib="casuser"); proc cas; table.upload / caslib="casuser", path="cholesterol", cas...

Code SAS
Voir

From Memory to Disk: The Complete Guide to Saving CAS Tables as SAS7BDAT

data work.cholesterol; input Name $ Age Sex $ Cholesterol_Level; datalines; John_Doe 45 M 200 Jane_Smith 30 F 180 Peter_Jones 55 M 240 Alice_Brown 25 F 160 ; run; cas casauto sessopts=(caslib="casuser"); proc cas; table.upload / caslib="casuser", path="cholesterol", cas...

Code SAS
Voir

From Memory to Disk: The Complete Guide to Saving CAS Tables as SAS7BDAT

data work.cholesterol; input Name $ Age Sex $ Cholesterol_Level; datalines; John_Doe 45 M 200 Jane_Smith 30 F 180 Peter_Jones 55 M 240 Alice_Brown 25 F 160 ; run; cas casauto sessopts=(caslib="casuser"); proc cas; table.upload / caslib="casuser", path="cholesterol", cas...

Code SAS
Voir

From Memory to Disk: The Complete Guide to Saving CAS Tables as SAS7BDAT

data work.cholesterol; input Name $ Age Sex $ Cholesterol_Level; datalines; John_Doe 45 M 200 Jane_Smith 30 F 180 Peter_Jones 55 M 240 Alice_Brown 25 F 160 ; run; cas casauto sessopts=(caslib="casuser"); proc cas; table.upload / caslib="casuser", path="cholesterol", cas...