What is factor analysis?
No Answer is Posted For this Question
Be the First to Post Answer
If you were told to create many records from one record show how you would do this using arrays and with PROC TRANSPOSE?
How could you generate test data with no input data?
what other SAS features do you use for error trapping and data validation?
what are all the ways to define macro variable??
2 Answers GSK GlaxoSmithKline,
What is the purpose of _character_ and _numeric_?
what is the difference between %put and symbolgen?
Explain the message 'Merge has one or more datasets with repeats of by variables'.
Describe the ways in which you can create macro variables?
Are the preferred term counts are always equal to Body system counts? If so, Why are they equal if not why they are not equal?
What techniques and/or PROCs do you use for tables?
data jagan1.s; input bp$; cards; 100/90 120/89 112/87 run; in the above code how to convert character data values to numeric data values?
I use NOCUM/NOPERCENT option in the tables statement like this Proc freq data = deepak; tables x y /nocum nopercent; run; Here I get nopercent and nocum in the output only for variables x and y. How do i do it for all variables? Deepak