03-07-2018
swapnilsoni
Fluorite | Level 6
Member since
10-22-2015
- 5 Posts
- 2 Likes Given
- 0 Solutions
- 0 Likes Received
-
Latest posts by swapnilsoni
Subject Views Posted 1060 05-31-2016 01:01 AM 1079 05-29-2016 05:28 AM 952 11-28-2015 07:56 AM 2655 10-24-2015 06:06 AM 947 10-22-2015 10:27 AM -
Activity Feed for swapnilsoni
- Posted Re: Visualization tools that are compatible with enterprise-wide SAS on SAS Visual Analytics. 05-31-2016 01:01 AM
- Posted Visualization tools that are compatible with enterprise-wide SAS on SAS Visual Analytics. 05-29-2016 05:28 AM
- Liked Difference in SAS Enterprise Guide 5.1 and SAS 9.4 for Proc Autoreg for Sreeja. 11-28-2015 07:58 AM
- Liked Re: Difference in SAS Enterprise Guide 5.1 and SAS 9.4 for Proc Autoreg for Tom. 11-28-2015 07:58 AM
- Posted why proc varmax output and proc reg outputs are same? on SAS Procedures. 11-28-2015 07:56 AM
- Posted Re: Difference in SAS Enterprise Guide 5.1 and SAS 9.4 for Proc Autoreg on SAS Forecasting and Econometrics. 10-24-2015 06:06 AM
- Posted Different outputs in different SAS versions in GARCH model under PROC AUTOREG on SAS Forecasting and Econometrics. 10-22-2015 10:27 AM
-
Posts I Liked
Subject Likes Author Latest Post 1 1
05-31-2016
01:01 AM
Compatible: Can we transfer the data or analysis work of SAS to any other tool to visualize them. Or, can any other tool interact with SAS on real time basis? Enterprise wide SAS: Web based SAS only; as in we can work on cloud without exchange the files across the locations. Why other tools than SAS Visualization: Cost I hope doubts are clarified. If more needed, please private message me via the community. Response awaited. Thanks! ##- Please type your reply above this line. Simple formatting, no attachments. -##
... View more
05-29-2016
05:28 AM
Can you please tell some Visualization tools that are compatible with enterprise-wide SAS such as Epsilon and Actuate tools
... View more
11-28-2015
07:56 AM
how coefficients are estimated in VAR model in sas? why proc varmax output and proc reg outputs are same?
Please check the following programs:
/*Program-1: VARMAX PROCEDURE*/
/*Estimate VAR(1) model with all 3 variables (Trivariate)*/
proc varmax data=sashelp.class ;
model Age Weight Height/p=1 ;
run;
/*PROGRAM2: REG PROCEDURE*/
/*Let's replicate this using PROC REG with newly created dataset with manual lags*/
/*New dataset*/
data lag_data;
set sashelp.class;
Age_l=lag(Age);
Weight_l=lag(Weight);
Height_l=lag(Height);
run;
/*Use PROC REG: gives same result as above*/
proc reg data=lag_data;
model Age=Age_l Weight_l Height_l;
run;
Concern: Both are giving same output. This should not happen since VAR uses multivariate OLS not conventional OLS used in Regression. If not so the what is use of VAR?
... View more
10-24-2015
06:06 AM
I am sorry! The answer is just useless. How can the estimate get changed from version to version. I had been facing this severe issue for long time. Yet no solution I am getting. If there is something to do with seed then it could have made sense. Even there also we need to know the way to figure out the common seed so that we can get the consistent estimates irrespective of SAS version. Again let me make this point clear. Version cannot change the formula for estimates. If 2+2 =4 then it will be 4 only not 5 or 3 in different versions of calculator. Kindly introspect and try to post the firm response.
... View more
10-22-2015
10:27 AM
Following is my SAS program to build GARCH model using PROC AUTOREG: proc autoreg data=DATASET;
model Y= X1 X2
/method=ml nlag=12 garch=(p=1,q=1) maxiter=500 dwprob;
run; I ran this same program using same database in 2 different versions of SAS: 1) Base SAS 2) ETS SAS Both are giving different GARCH estimates, although AUTOREG estimates are same. Please help why it is so and how to get same outputs?
... View more