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

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

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
  • 1094 views
  • 0 likes
  • 2 in conversation