what is picture format? give any one example?

Answers were Sorted based on User's Feedback



what is picture format? give any one example?..

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

what is picture format? give any one example?..

Answer / aravind rangaraj

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

what is picture format? give any one example?..

Answer / gaurav verma

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

Post New Answer

More SAS Interview Questions

HOW DO WE CREATE A SAS STORED PROCESS IN SAS EG ?

1 Answers   TCS,


How can sas program be validated?

0 Answers  


what is data integration? : Sas-di

0 Answers  


What does proc print, and proc contents are used for?

0 Answers  


explain about various caches available in data integrator? : Sas-di

0 Answers  






How would you create multiple observations from a single observation?

1 Answers   Quintiles,


do you prefer proc report or proc tabulate? Why? : Sas programming

0 Answers  


How do you debug and test your SAS programs?

0 Answers   Quintiles,


what are all the default values getting in PROC MEANS...???

2 Answers  


Hi Friends, My name is Priya,am new to this Forum. am looking for SAS Platform Administration Interview Questions.I searched every where but I couldn't find any where.please can anyone help me with the FAQ's. It would be a great favor to me if you can email the Interview Questions to priyafeb84@gmail.com

0 Answers  


What is the order of evaluation of the comparison operators: + - * /** ()?

3 Answers   Quintiles,


Explain the main difference between the sas procedures and functions? : Sas-administrator

0 Answers  


Categories