How to solve this problem?
If you want to create a summary data set, the first step is to read the documentation on PROC SUMMARY:
Since this looks a lot like homework what have you tried so far?
If you get errors or unexpected output we are very willing to help with addressing issues but doing someone else's homework without evidence of at least trying ...
Show code and any errors from the log by copy and paste into a code box opened using the forum {I} menu icon.
You are being asked to summarize data. Try searching the SAS online help for "summary" and see if anything pop up.
proc means data=dailyprices nway maxdec=2 ;
class symbol;
var price;
output out=want(drop=_:) mean=price_mean n=price_n max=price_max min=price_min;
run;
EDIT: I have a smilar home work too. Any chance are we class mates at my college
Thank you very much. I was trying to achieve this by using data step, but I was unable to make any sense out of it.
Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.