Résultats de recherche

113 résultats trouvés Page 6 / 12
Code SAS
Voir

Vérification des formats et informats SAS

proc format lib=local; value FMTA 1='a' 2='b' other='na'; value $FMTB '1'='a' '2'='b' other='na'; invalue FMTC 'x'=1 'y'=2 other=.; invalue $FMTD 'x'='a' 'y'='b' other='na'; quit;

Code SAS
Voir

Gestion et application de formats SAS

proc format; value fa 0='A' 1='B' 2='C' 3='D' other='NA'; value $fb 'male'=1 'female'=2 other=99; invalue $fa 0='A' 1='B' 2='C' 3='D' other='NA'; invalue fb 'male'=1 'female'=2 other=99; run;

Code SAS
Voir

Test et Gestion des Formats et Informats SAS

proc format lib=l1; value FMT_A 1='a' 2='b' other='na'; invalue $INFMT_A 'x'='1' 'y'='2' other=.; quit;

Code SAS
Voir

Test et Gestion des Formats et Informats SAS

proc format lib=l2; value FMT_B 1='c' 2='d' other='na'; invalue $INFMT_B 'x'='3' 'y'='4' other=.; quit;

Code SAS
Voir

Test et Gestion des Formats et Informats SAS

proc format lib=l3; value FMT_C 1='e' 2='f' other='na'; invalue $INFMT_C 'x'='5' 'y'='6' other=.; quit;

Code SAS
Voir

Test et Gestion des Formats et Informats SAS

proc format lib=l4; value FMT_D 1='g' 2='h' other='na'; invalue $INFMT_D 'x'='7' 'y'='8' other=.; quit;

Code SAS
Voir

Gestion des formats SAS dans CAS

proc format library=work.formats casfmtlib="casformats" ; value enginesize low -

Code SAS
Voir

Gestion des formats définis par l'utilisateur dans CAS pour Viya

proc format casfmtlib="casformats"; value dow 1 = 'Sunday' 2 = 'Monday' 3 = 'Tuesday' 4 = 'Wednesday' 5 = 'Thursday' 6 = 'Friday' 7 = 'Saturday'; run;

Code SAS
Voir

Monitoring SAS Viya : Transformez vos logs ESM et PostgreSQL en insights CAS haute performance

proc format casfmtlib="casformats"; value dow 1 = 'Sunday' 2 = 'Monday' 3 = 'Tuesday' 4 = 'Wednesday' 5 = 'Thursday' 6 = 'Friday' 7 = 'Saturday'; run; cas casauto savefmtlib fmtlibname...

Code SAS
Voir

Exemple d'utilisation de l'UTF-8 en SAS

proc format; value utf8_udf 12 = &udf_v1 13 = &udf_v2 OTHER= [Best6.] ; run;