12-22-2020
ankush2301
Calcite | Level 5
Member since
03-12-2019
- 5 Posts
- 0 Likes Given
- 0 Solutions
- 0 Likes Received
-
Latest posts by ankush2301
Subject Views Posted 1182 06-17-2019 02:57 AM 1168 04-03-2019 11:03 AM 1368 04-03-2019 11:00 AM 3657 03-28-2019 04:09 AM 1026 03-28-2019 04:04 AM -
Activity Feed for ankush2301
- Posted How to build custom models in PROC TSMODEL on SAS Forecasting and Econometrics. 06-17-2019 02:57 AM
- Posted PROC SSM for level change on SAS Procedures. 04-03-2019 11:03 AM
- Posted PROC X12 for seasonal adjustment on SAS Forecasting and Econometrics. 04-03-2019 11:00 AM
- Posted Re: How to create a job (Stored Procedure) in SAS VA 8.3 on SAS Visual Analytics. 03-28-2019 04:09 AM
- Posted Re: SAS Visual Analytics 8.3 Functionality on SAS Visual Analytics. 03-28-2019 04:04 AM
06-17-2019
02:57 AM
Hi, I want to decompose the historical sales into S_level, S_slope, S_irregular,S_season in PROC TS model UCM model (very similar to OutComponent output while executing PROC UCM). Can someone please let me know how we can give options for extracting out component while executing UCM through PROC TS MODEL in SAS VIYA 8.3. Any help will be highly appreciated. THanks Ankush Porwal
... View more
04-03-2019
11:03 AM
Hi All, I am trying to find the time series which has level change behavior using PROC SSM using following code. I am getting the output in ODS window, but how can I write the output in a sas table and use it directly for flagging the level change point. proc ssm data=WORK.sales data plot=maxshock; id date interval=week; trend irw(ll) variance=0 checkbreak; state seasonState(1) type=season(length=52) cov(g) checkbreak(overall); comp season = seasonState[1]; irregular wn; model sale_qty =irw season wn; output out=breakFor; run; Any help will be appreciated Thanks Ankush
... View more
04-03-2019
11:00 AM
Hi All, I am trying to decompose my time series data into trend and seasonality and using proc X12 for this in SAS VIYA3.4. After executing the following code i am facing error msg :- NOTE: This release of the X13 procedure is based on the Census Bureau X-13ARIMA-SEATS Release Version 1.1. ERROR: Invalid values : INTERVAL=WEEK1. . proc x12 data=sales_data date=date; var sales_qty; transform power=0; arima model=( (0,1,1)(0,1,1) ); estimate; x11; run; I have already tried giving interval = week as well, but it doesnt work. Any help will be appreciated Thanks Ankush
... View more
03-28-2019
04:09 AM
hi Kalind Patel, Thanks for your prompt reply. Can you please suggest how can we create jobs and execute them in SAS VIYA. Do we need additional functionality for this? As I see we should have web form functionality for jobs creation and which involves HTML + SAS coding. M I right in my understanding? Thanks Ankush
... View more
03-28-2019
04:04 AM
Hi Fredrike, Do you mean converting the above functionality into a sas code and convert it into a Job? Also I want to understand how can i enable job creation process in existing SAS VIYA solution, as we do not see any job creation module . Does it require anything else then SAS Coding? like HTML or JAva coding? Thanks in advance Ankush
... View more