what is picture format? give any one example?
Answers were Sorted based on User's Feedback
Answer / bitla
picture format writes a template for numerics
proc format ;
picture sno
low - -1 = '00.00'
0-9='9.999'
10-99='99.99'
100-999='999.9'
;
When you specify zero as the digit selector, any leading
zeros in the number to be displayed are shown as
blanks. When nine is specified as the digit selector, the
leading zeros are displayed in the output.
| Is This Answer Correct ? | 13 Yes | 0 No |
picture format is used to Create a template for printing
numbers.
ex:
proc format ;
picture nozeros low - -1 = '00.00' (prefix='-')
-1< - < 0 = '99' (prefix='-.' mult=100)
0 - < 1 = '99' (prefix='.' mult=100)
1 - high = '00.00';
run;
| Is This Answer Correct ? | 5 Yes | 0 No |
proc format;
picture pctfmt low-high='009.90%';
run;
proc tabulate data=xyz;
class name gender;
var rbc wbc;
table (name all)*(genderb all),
rbc*(mean*f=9. pct*f=pctfmt7.2)
wbc*(mean*f=8. pct*f=pctfmt7.2);
keylabel rbc='red blood cell'
wbc='white blood cell'
pct='percent';
run;
| Is This Answer Correct ? | 0 Yes | 0 No |
If you were told to create many records from one record show how you would do this using arrays and with PROC TRANSPOSE?
Mention how to limit decimal places for the variable using proc means?
Please, anyone, let me know the style or an example of using 'by='/'by' variable of a PDV(Program Data Vector)
3 Answers Verinon Technology Solutions,
If you were told to create many records from one record, show how you would do this using array and with proc transpose?
Hi, If anyone has base SAS certification dumps, please share.
In sas admin differentiate between roles and capabilities? : sas-grid-administration
what is the difference between proc report and proc format?
Do we follow ADAM in analysis dataset development?How? Usually which version? Why is it necessary?
what is SAS/Access and SAS/Connect?what are the uses?
What is Linear Regression?
Mention what is the difference between nodupkey and nodup options?
how to handle in stream data containing semicolon in it?