Hi all,
I've been using the following code to produce frequency counts and percentages of Yes responses for a series of binary questions on a survey (contained in "dataset").
proc tabulate data=dataset;
var _NUMERIC_;
table _NUMERIC_,n='Count' sum='Number of ones' mean= 'Percent ones'*f=percent10.2;
run;
How can i only select certain survey questions (variables) and present them neatly in table form, say, in Word, without manually transcribing everything?
I'd love to learn about different ways to do this, since I expect to need to run this for numerous data sets.
Many thanks!!