11-06-2016
Anonym432
Calcite | Level 5
Member since
10-30-2016
- 5 Posts
- 0 Likes Given
- 0 Solutions
- 0 Likes Received
-
Latest posts by Anonym432
Subject Views Posted 14960 11-06-2016 05:24 PM 15012 10-31-2016 05:34 AM 15038 10-30-2016 04:48 PM 15047 10-30-2016 03:32 PM 885 10-30-2016 03:28 PM -
Activity Feed for Anonym432
- Posted Re: Can I add a blank row among pre-existing rows? on SAS Programming. 11-06-2016 05:24 PM
- Posted Re: Can I add a blank row among pre-existing rows? on SAS Programming. 10-31-2016 05:34 AM
- Posted Re: Can I add a blank row among pre-existing rows? on SAS Programming. 10-30-2016 04:48 PM
- Posted Can I add a blank row among pre-existing rows? on SAS Programming. 10-30-2016 03:32 PM
- Posted How to output wald test result from SURVEYREG and SURVEYLOGISTIC? on SAS Programming. 10-30-2016 03:28 PM
11-06-2016
05:24 PM
Thanks again. I would like to add one complete empty row! Another example is that, I have a data set with 10,000 rows and 5 columns (Let's say, Column1 - Column 5). By addiing one empty column between two lines 3500 and 3501, I would like to change my dataset 10,001 lines with 5 columns. In this case, the empty line should be 3501th. Thanks!
... View more
10-31-2016
05:34 AM
Thank you for all your comments. I think I gave you some confusion. What I would like to do is exaclty for my output, but I didn't mean that I would use "proc report", "proc print", etc. I manually make an output using proc sql and data step. In the middle of amending the customized output format, I realized that I should have a blank between some rows, so I would like to ask you for it.
... View more
10-30-2016
04:48 PM
At this moment, I actually need this for my final output. I would like to handle the final format in SAS as possible as I can!
... View more
10-30-2016
03:32 PM
What I would like to do is simply illustrated below: The current data set is, (line number) ID VALUE (1) A 90 (2) B 90 (3) C 83 (4) D 49 (5) E 20 What I would like to do add a blank line between third and fourth rows like this: (line number) ID VALUE (1) A 90 (2) B 90 (3) C 83 (4) (5) D 49 (6) E 20 I would like to know the simplest way to get the new dataset. Thanks in advance.
... View more
10-30-2016
03:28 PM
I would like to know how to extract statistics related to wald-test results ("estimate" part in the below SAS codes) when I run an OLS or logistic regression using SURVEYREG or SURVEYLOGITIC. As you know, I am able to extract other statistics (e.g. ParameterEstimates, NObs, FItStatistics) from the ODS Output. But, I don'k now how to extract wald statistics (chisq or t-stat) and its related p-value. Please help me if there is anybody knowing this. Thank you in advance. proc surveylogistic data= data; model dep (descending) = indep1 Dummy Indep1 *Dummy /rsquare; ods output ParameterEstimates= output NObs = NObs Fitstatistics= Fitstat; estimate Indep1 1 Indep1 *Dummy 1; run; proc surveyreg data= &data; model dep= indep1 Dummy Indep1 *Dummy /adjrsq solution; ods output ParameterEstimates= &output datasummary = Summary fitstatistics= FitStat; ;; estimate Indep1 1 Indep1 *Dummy 1; run;
... View more