Hello, I'm sorry but I find it difficult to use SAS University Edition because it has different syntax. I'm trying to analyze spectral. I've done the plot and I don't know what to do for the rest. All I got is these syntax and I know it will not success if I run it in SAS UE. How am I supposed to do? Thankyou so much.
proc spectral data=spectral out=hasil coef S P whitetest;
var milk;
weight Bart;
run;
proc print data=hasil;
run;
proc gplot data=hasil;
plot p_01 * freq;
plot p_01 * period;
plot s_01 * freq;
plot s_01 * period;
run;
proc gplot data=hasil;
where period;
plot s_01 * period / HREF=(12,168);
run;
proc gplot data=hasil;
where period <50;
plot s_01 * period / HREF=(12);
run;
@sasgiaz wrote:
Hello, I'm sorry but I find it difficult to use SAS University Edition because it has different syntax.
Different syntax than what? The code is the same as in SAS Base or EG.
PROC SPECTRAL is not available in SAS UE as noted in the limtations:
Six procedures from SAS/ETS are included in SAS University Edition to support the forecasting tasks in SAS Studio. The procedures are TIMEDATA, TIMESERIES, ARIMA, ESM, UCM, and TIMEID. You might notice that SAS/ETS appears in the list of products that are included with SAS University Edition. However, only those six procedures are included.
https://support.sas.com/software/products/university-edition/faq/limitations.htm
If you need to do this analysis, I would suggest getting a full version of SAS or using SAS for Academics on Demand. If you're at an academic institution they usually offer a license at low price or for free.
Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!
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.
Ready to level-up your skills? Choose your own adventure.