Date: Mon, 30 Jul 2001 10:15:05 -0400
Reply-To: Steve Rowe <steverowe@EMAIL.MSN.COM>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Steve Rowe <steverowe@EMAIL.MSN.COM>
Subject: Re: Need to get the descriptive stats for each 6x24 data points
You could add a 'day' variable to the data set
day=ceil(_N_/7);
then
proc means;
var x1-x15; *or whatever the variables are;
by day;
Stephen Rowe, Ph.D.
statistician
marketing research / data mining
presently unemployed
Chicago area
On Sat, 28 Jul 2001 17:21:09 -0700, Ananda Manage <sl123us@YAHOO.COM> wrote:
>Dear SAS users,
>
>I have 15 variables(in 15 columns) measured in every
>10 munites for a perioed of 60 days.
>That is: each of my columns has 6x24x60 data points.
>
>I need to get all the descriptive statistics(mean
>median, std min and max) for every day.
>
>That is: I need to get those descriptive statistics
>for each 6x24 data points.
>
>Please help me.
>Ananda.
|