BookmarkSubscribeRSS Feed
sasgiaz
Quartz | Level 8

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;

1 REPLY 1
Reeza
Super User

@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.

 

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
  • 1 reply
  • 782 views
  • 0 likes
  • 2 in conversation