how to generate means for every subject;

Answer Posted / naga

Here the question is means for every subject.
In SAS terminology subject means patient so the code is
proc means data=datasetname;
by subject;
var list;
run;

Is This Answer Correct ?    0 Yes 4 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Describe crosslist option in tables statement?

711


how do you debug and test your sas programs? : Sas programming

558


what other sas products have you used and consider yourself proficient in using? : Sas programming

683


Explain the difference between informat and format with an example.

682


Differentiate between ceil and floor functions.

656






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

572


How does SAS handle missing values in: assignment statements, functions, a merge, an update, sort order, formats, PROCs?

1097


What are the prime responsibilities of data integration administrator? : Sas-di

585


In sas, what are the areas that you are most interested in? : sas-grid-administration

636


i have a dataset with 100 obs i want to generate title from 20th obs onwards with total observations. that should contain 100 obs.dont use firstobs and dnt split the data. use dataset block or proc report? how can we genarate;

1966


Name and describe few sas character functions that are used for data cleaning in brief.

665


What do you code to create a macro? : sas-macro

577


What is the difference between match merge and one to one merge?

690


What do you know about symput and symget?

727


How can you create a macro variable with in data step? : sas-macro

572