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 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

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