Hi,
I have a huge dataset with about 1300 variables. I'd like to create a table that lists the information generated in a proc frequency statement for each of the variables in the dataset.
I know it's possible to generate output tables for individual variables, but what about one for all the variables combined?
I looked up info on the ODS commands and tried this code:
However, I got the following error message:
WARNING: Output 'Table' was not created. Make sure that the output object name, label, or path is spelled correctly. Also, verify that the appropriate procedure options are used to produce the requested output object. For example, verify that the NOPRINT option is not used.
Thoughts?
Jane L.
I have a huge dataset with about 1300 variables. I'd like to create a table that lists the information generated in a proc frequency statement for each of the variables in the dataset.
I know it's possible to generate output tables for individual variables, but what about one for all the variables combined?
I looked up info on the ODS commands and tried this code:
Code:
proc freq data=baseline;
ODS OUTPUT Table=baseline_freq;
run;
However, I got the following error message:
WARNING: Output 'Table' was not created. Make sure that the output object name, label, or path is spelled correctly. Also, verify that the appropriate procedure options are used to produce the requested output object. For example, verify that the NOPRINT option is not used.
Thoughts?
Jane L.