BookmarkSubscribeRSS Feed
STATSKING
Calcite | Level 5

Ive attached a file of my code.

What im trying to do is add up all the number in the absorder column for each given 15min window under then NZtimeentereed15 column.

 

Ie for the first 15min window it should return 13. second 15min window( ie 30min) it should return 3.

23 for the 45th min.

 

I have over 700,000 observations

 

all help would be great.


Capture.PNG
2 REPLIES 2
Reeza
Super User

Use proc means or a SQL query. 

Sum variable of interest. 

If SQL group by time variable. Or if proc means include time variable as Class or By variable. Number of observations doesn't matter. 

Reeza
Super User
Proc SQL;
Create table want as
Select time, sum(variable) as total
From have
Group by time
Order by time;
Quit;

Proc means data=have noprint nway;
Class time;
Output out=want2 sum(variable)=total;
run;

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

Register now!

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

Find more tutorials on the SAS Users YouTube channel.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 2 replies
  • 1137 views
  • 0 likes
  • 2 in conversation