Search Results

68 résultats trouvés Page 2 / 7
Code SAS
Voir

Creating a format for cylinders

PROC FORMAT; VALUE cylf 4 = "4 Cylinders" 6 = "6 Cylinders" 8 = "8 Cylinders" ; RUN;

Code SAS
Voir

Managing Decimals with PROC FORMAT PICTURE

title1 '12.2.2 Working with Fractional Values'; title2 'Showing Decimals'; proc format; picture showval other = '0000'; picture withdec other = '00.0'; picture twodec other = '09.00'; run;

Code SAS
Voir

Managing Decimals with PROC FORMAT PICTURE

proc format; picture showdec other = '09.00'; run;

Code SAS
Voir

Managing Decimals with PROC FORMAT PICTURE

proc format; picture showdecr (round) other = '00009.00'; run;

Code SAS
Voir

Sales Report and Negative Binomial Simulation

proc format; value $sequip 'Sports' = 'Sports Equipment'; run;

Code SAS
Voir

Profit Report by Product Line and Year

proc format; value $sequip 'Sports' = 'Sports Equipment'; run;

Code SAS
Voir

Air Quality Analysis and Reporting

* Create a format to display colors ranging from Blue (cold) to Red (hot) ; data _null_ ; call execute('proc format fmtlib ; value pct_') ; max=1; maxloop=255 ; do i=1 to maxloop ; color='cx'||put(i/maxloop*255,hex2.)||'00'||put((maxloop-i)/maxloop*255,hex2.) ; from=((i-1)/maxloop...

Code SAS
Voir

Conference Data Analysis

PROC FORMAT; VALUE needsveg 0 = "No" 1 = "Yes" ; RUN;

Code SAS
Voir

Managing SAS Formats in CAS

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

Code SAS
Voir

Zodiac Sign Frequency with Unicode Symbols

proc format; value $ zodiacSymbol 'Scorpio' = "(*ESC*){unicode '264F'x}" /* NOTE: unicode expects U16BE */ 'Virgo' = "(*ESC*){unicode '264D'x}" 'Gemini' = "(*ESC*){unicode '264A'x}" 'Sagittarius' = "(*ESC*){unicode '2650'x}" 'Leo' = "(*ESC*){unicode '264C'x}" 'Aq...