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

Innovate_SAS_Blue.png

Registration is open! SAS is returning to Vegas for an AI and analytics experience like no other! Whether you're an executive, manager, end user or SAS partner, SAS Innovate is designed for everyone on your team. Register for just $495 by 12/31/2023.

If you are interested in speaking, there is still time to submit a session idea. More details are posted on the website. 

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.

Get the $99 certification deal.jpg

 

 

Back in the Classroom!

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

View all other training opportunities.

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