06-09-2017
SAS_User
Calcite | Level 5
Member since
06-23-2011
- 40 Posts
- 0 Likes Given
- 0 Solutions
- 0 Likes Received
-
Latest posts by SAS_User
Subject Views Posted 1449 06-08-2017 08:45 PM 2064 04-26-2017 11:53 PM 2119 04-20-2017 03:58 PM 2057 02-27-2017 02:56 PM 2103 01-22-2017 01:02 AM 2105 01-22-2017 01:00 AM 2127 01-21-2017 09:06 PM 3774 01-20-2017 03:27 PM 3781 01-20-2017 01:47 PM 3792 01-20-2017 12:44 PM -
Activity Feed for SAS_User
- Posted Longitudinal survival analysis on Statistical Procedures. 06-08-2017 08:45 PM
- Posted Re: Proc Lifetest -- Stratify Kaplan Meier Curve by the censoring variable on Statistical Procedures. 04-26-2017 11:53 PM
- Posted Proc Lifetest -- Stratify Kaplan Meier Curve by the censoring variable on Statistical Procedures. 04-20-2017 03:58 PM
- Posted Re: Phreg multivariable model - hazard ratio is 1 and significant on Statistical Procedures. 02-27-2017 02:56 PM
- Posted Re: Phreg multivariable model - hazard ratio is 1 and significant on Statistical Procedures. 01-22-2017 01:02 AM
- Posted Re: Phreg multivariable model - hazard ratio is 1 and significant on Statistical Procedures. 01-22-2017 01:00 AM
- Posted Phreg multivariable model - hazard ratio is 1 and significant on Statistical Procedures. 01-21-2017 09:06 PM
- Posted Re: Very high hazard ratio from Proc Phreg on Statistical Procedures. 01-20-2017 03:27 PM
- Posted Re: Very high hazard ratio from Proc Phreg on Statistical Procedures. 01-20-2017 01:47 PM
- Posted Re: Very high hazard ratio from Proc Phreg on Statistical Procedures. 01-20-2017 12:44 PM
- Posted Re: Very high hazard ratio from Proc Phreg on Statistical Procedures. 01-20-2017 10:55 AM
- Posted Very high hazard ratio from Proc Phreg on Statistical Procedures. 01-20-2017 01:42 AM
- Posted Re: Multivariate non parametric regression-Loess/GAM/anything else? on Statistical Procedures. 06-12-2014 02:37 PM
- Posted Multivariate non parametric regression-Loess/GAM/anything else? on Statistical Procedures. 06-11-2014 06:22 PM
- Posted Symput question-maybe symput is not necessary to create this new variable? on SAS Programming. 02-03-2012 08:07 PM
- Posted Gplot - groups too far apart and very close to border on Graphics Programming. 09-29-2011 05:30 PM
- Posted Proc gplot color and symbol question on Graphics Programming. 09-29-2011 02:47 PM
- Posted Proc gplot color and symbol question on Graphics Programming. 09-01-2011 06:11 PM
- Posted Setting up the random effects model in Proc mixed on Statistical Procedures. 08-26-2011 07:18 PM
- Posted Setting up the random effects model in Proc mixed on Statistical Procedures. 08-25-2011 04:14 PM
06-09-2017
10:57 AM
I suggest looking at Procs PHREG and LIFEREG as a couple of places to start.
... View more
04-26-2017
11:53 PM
Thanks to both of you for the response and explanation
... View more
02-27-2017
02:56 PM
Thank you for the suggestion. That was very helpful
... View more
01-20-2017
05:46 PM
It seems strange that the hazardratio should be that extreme. Can you attach the dataset? I would like to take a look on it.
... View more
06-12-2014
02:37 PM
Thanks, Steve, for the ideas. When I did Loess on the individual variables, the inflection points on the Loess curves were noted and used to create cutoffs for these individual variables, also attempting to make them linear and then the scores were multiplied to use as a score that would predict the binary response. I was worried that this method would lose some valuable information and hence wanted to try using these in their original form. You have a good point about the additivity and I will try to see if I can use only clearly additive variables in GAM. I haven't used Glimmix, so I will also try that and Transreg if time permits. Thanks again for your suggestions
... View more
02-03-2012
09:45 PM
I would like to see some example data. What you have, and example of what you want.
... View more
09-30-2011
08:05 AM
One way would be to use the 'offset' option in an axis statement, to add some offset to the left & right... data foo; input y $1 x z; datalines; A 3.6 1 B 2.8 2 ; run; axis1 offset=(30,30); proc gplot; plot x*y=z / haxis=axis1; run;
... View more
08-29-2011
12:31 PM
no problem. i am just having a hard time visualizing your data structure. hopefully some of the other users on here can chime in. can you show some made up dummy data (something that shows your data structure)?
... View more
11-19-2010
09:43 AM
I am skeptical about your model. The model should depend on your experimental (or survey) design (layout). Just based on the variable names, I suspect that some effects should be nested within others.
... View more
09-21-2010
07:50 PM
Hi Cynthia,
Thank you very much for the detailed response with the code! Putting the dataset with the longest variable length first in the list of datasets in the "set" statement worked for me this time, but I am sure I will use the length statement the next time. Thanks for showing the difference with the code!
... View more
09-16-2010
02:57 PM
I finally got around to trying the code and it worked really well for my requirement.
Thanks to both of you for the suggestions. the code that I used was the first one that Steve suggested - proc glm modeling the difference.
Thanks for the help!
... View more
02-17-2010
08:00 AM
Check out Chapter 12 in SAS for Mixed Models, 2nd ed. Also a google search on Stroup "mixed models" power will be helpful.
SteveDenham
... View more
02-18-2010
05:38 PM
The experiment was done on two days and although there is difference in mean measurements on the two days, the bimodality is not due to days. And, I tried putting in sample as a random effect and the residual plot is normal! Thanks Dale! I think I ran way too many models and forgot to try the one I really wanted. This random effects model (no fixed effects) will help answer all the questions. And the results are what was expected out of this experiement
... View more
05-08-2009
06:54 AM
Variance estimates are scale dependent.
You don't say what your topic is, or what your variables are, but suppose you are (say) looking at the effect of salary on life expectancy. Measure salary in dollars per year, variance will be huge. Measure it in tens of thousands of dollars per year, variance will be small.
Does this apply in your case?
... View more