Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Open SAS Studio create a new program and run the following code / * the following 3 lines of code assign all the CAS libraries
Open SAS Studio create a new program and run the following code
the following lines of code assign all the CAS libraries and lists the into the log window
cas mySession sessoptscaslibcasuser timeout localeenUS;
caslib all list;
caslib all assign;
locate the PRICEDATA data set from the following library SASHELP.
Run a proc contents to explore the data set.
Complete Questions using proc contents and proc freq or proc sql
Promote the PRICEDATA data set into CASUSER CAS library. You can run the following code;
you can name this whatever you wan but library must be casuser
we need to promote the pricedata into CAS to access by Visual Forecasting
data casuser.somedatasetname promoteyes;
set sashelp.pricedata;
run;
Verify that the data set you created above is in the CASUSER library
Open Viya Model Studio and create a forecast project using the autoforecast
Use the following procedures; Variable for Datetime, Time Interval is month, Multiplier and shift
Create a seasonal model and a nave model by right clicking data node and create forecast.
Choose WMAPE as a metric to declare a model champion
Create an override and submit
How many observations are there in the data set mark
How many Variables are in the data set mark
What is the unit of time for this forecast marks
How many unique time periods are there marks
What is the earliest time period marks
What month did the largest Sales volume occur marks
What is the predicted sales value of; REGION LINE and PRODUCT for May marks
What model was most prevalent in the Auto Forecasting Marks
What was the upper confidence interval value for Jun for Line Product marks
What model was the champion model between seasonalautoforecastingnave marks
Display the predicted values series with the following override: the sales in March were going to be $ marks
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started