05-13-2019
medic
Fluorite | Level 6
Member since
08-02-2017
- 7 Posts
- 3 Likes Given
- 0 Solutions
- 0 Likes Received
-
Latest posts by medic
Subject Views Posted 1022 05-10-2019 03:01 AM 881 04-10-2019 08:03 AM 940 04-09-2019 05:31 AM 1662 04-04-2019 12:49 AM 1688 04-03-2019 09:59 PM 1986 04-09-2018 01:50 PM 1996 04-09-2018 01:45 PM -
Activity Feed for medic
- Posted estimating coefficients from Interrupted time series using ARIMA in PROC ARIMA on SAS Forecasting and Econometrics. 05-10-2019 03:01 AM
- Posted Re: why is the result of (start, end) different from calculated result in PHREG? on Statistical Procedures. 04-10-2019 08:03 AM
- Posted why is the result of (start, end) different from calculated result in PHREG? on Statistical Procedures. 04-09-2019 05:31 AM
- Tagged why is the result of (start, end) different from calculated result in PHREG? on Statistical Procedures. 04-09-2019 05:31 AM
- Tagged why is the result of (start, end) different from calculated result in PHREG? on Statistical Procedures. 04-09-2019 05:31 AM
- Tagged why is the result of (start, end) different from calculated result in PHREG? on Statistical Procedures. 04-09-2019 05:31 AM
- Liked Re: Is there a way to plot loglogs (LLS) graph with very large data in SAS? for Tom. 04-09-2019 05:18 AM
- Liked Re: Is there a way to plot loglogs (LLS) graph with very large data in SAS? for PeterClemmensen. 04-04-2019 03:22 AM
- Posted Re: Is there a way to plot loglogs (LLS) graph with very large data in SAS? on SAS Programming. 04-04-2019 12:49 AM
- Posted Is there a way to plot loglogs (LLS) graph with very large data in SAS? on SAS Programming. 04-03-2019 09:59 PM
- Tagged Is there a way to plot loglogs (LLS) graph with very large data in SAS? on SAS Programming. 04-03-2019 09:59 PM
- Tagged Is there a way to plot loglogs (LLS) graph with very large data in SAS? on SAS Programming. 04-03-2019 09:59 PM
- Tagged Is there a way to plot loglogs (LLS) graph with very large data in SAS? on SAS Programming. 04-03-2019 09:59 PM
- Liked Re: import multiple text files with missing values for Reeza. 04-09-2018 01:54 PM
- Posted Re: import multiple text files with missing values on SAS Programming. 04-09-2018 01:50 PM
- Posted import multiple text files with missing values on SAS Programming. 04-09-2018 01:45 PM
-
Posts I Liked
Subject Likes Author Latest Post 1 1 1
05-13-2019
08:11 AM
1 Like
Try
proc arima data=sample; identify var=outcome(1) crosscorr=intervention noprint; estimate p=1 input=intervention method=ml; quit;
Note:
1. I have reduced your p=5 to p=1 because the higher order coefficients are not very significant. The residual plots appear OK.
2. The pre-intervention slope (MU in this case) is estimated as -0.72433, which seems reasonable since the outcome is trending downward prior to intervention.
3. Post-intervention slope, MU + intervention coefficient, turns out to be (-0.72433 + 12.49581).
Hope this works for you.
By the way, for carrying out more general types of analyses described in the paper you mention it is easier to use PROC SSM. This is a newer procedure than ARIMA and provides much broader support for time series modeling and intervention analysis. The learning curve for PROC SSM is a bit steep but I think worth taking a look. See
Selukar, R. S. (2017). “Detecting and Adjusting Structural Breaks in Time Series and Panel Data Using the SSM Procedure.” In Proceedings of the SAS Global Forum 2017 Conference. Cary, NC: SAS Institute Inc. http://support.sas.com/resources/papers/proceedings17/SAS0456-2017.pdf
... View more
04-10-2019
08:03 AM
Thanks. Here are some examples of my data structure. Say the study period is until 2013-12-31 as in ID 1. But if there's a change in any subject due to some time-dependent variable (treatment / as in ID 2 and 3), I updated the attribute before and after the date of the change as in Table 1. Table 1. ID startdate1 enddate1 treatment1 outcome1 startdate2 enddate2 treatment1 outcome2 1 2013-05-01 2013-12-31 0 0 . . . . 2 2013-06-01 2013-06-30 0 0 2013-06-30 2013-11-20 1 0 3 2013-07-01 2013-07-30 0 0 2013-07-30 2013-12-01 1 1 In order to run this through PROC PHREG, I changed the dataset into long form as following table 2. (i.e, those who have different states have 2 rows) Table 2. ID start end treatment outcome 1 2013-05-01 2013-12-31 0 0 2 2013-06-01 2013-06-30 0 0 2 2013-06-30 2013-11-20 1 0 3 2013-07-01 2013-07-30 0 0 3 2013-07-30 2013-12-01 0 1 and the code goes as: proc phreg data=sample; class treatment (ref='0'); model (start, end)*outcome(0) = treatment / rl; strata OOO (some other adjusting variables); run; But when I run this code, it takes several hours to get the results. (original dataset has about 10 million records) So instead using (start, end) form, I manually calculated the time-to-event (tte) as following table 3 Table 3. ID tte treatment outcome 1 244 0 0 2 29 0 0 2 143 1 0 3 29 0 0 3 124 0 1 and only changed the (start, end) part into "tte" as : proc phreg data=sample; class treatment (ref='0'); model tte*outcome(0) = treatment / rl; strata OOO (some other adjusting variables); run; In this case, the program only takes minutes, but the results are different from when using (start, end) statement. (sorry that I don't have exact numbers since I'm running another program right now) * I referred to http://support.sas.com/resources/papers/proceedings12/168-2012.pdf this article when managing the dataset, though it doesn't say anything about whether manually calculating the time-to-event will result the same or not. hope this explains enough to ask for your help.
... View more
04-04-2019
03:21 AM
1 Like
Add the line below to your code 🙂
ods output LogNegLogSurvivalPlot=LogNegLogSurvivalPlot;
... View more
04-09-2018
01:50 PM
wow... Thank you sooooo much. It works now!! I was struggling with this whole day T.T Thanks a lot!!
... View more