|
More site info...
SAS Statistical Procedures
| Forum profile
|
|
Forum profile page for SAS Statistical Procedures
on http://www.sas.com.
This report page is the aggregated overview from a single forum: SAS Statistical Procedures
, located on the Message Board at http://www.sas.com.
This forum profile page summarizes the general forum statistics such as: Users Activity, Forum Activity, and Top Authors, which are reported in either a table or graph below for a given reporting time period.
Additional forum profile information for "SAS Statistical Procedures
" on the Message Board at http://www.sas.com is also shown in the following ways:
1) Latest Active Threads
2) Hot Threads for Last Week
Warning: These statistics are generated using 'best efforts' and can experience delays and reporting errors at times. Please note that such statistics do not constitute a forum's popularity and/or exact posting volumes at any given reporting period.
|
|
|
|
|
Posting activity on SAS Statistical Procedures
:
|
|
Week
|
Month
|
3 Months
|
|
Threads:
|
22
|
46
|
111
|
|
Post:
|
31
|
64
|
163
|
|
|
SAS Statistical Procedures
Posting activity graph:
|
Top authors during last week:
user's latest post:
Power and sample size calculation
Published (2009-12-23 10:31:00)
The SAS Power and Sample Size procedures will do that. There is a nice interface in 9.2. You can also use Russ Lenth's web site ( http://www.stat.uiowa.edu/~rlenth/Power/ ). The sample size computation for a matched case-control study can be done with a one-sample test where the effect-size is the difference between the two groups. Doc Muhlbaier Duke
user's latest post:
Analysis Question: Which...
Published (2009-12-18 17:58:00)
You don't provide all relevant information to answer your question. For instance, are there any parameters in F(w,x,y,z) or g(w) which need to be estimated? Or are F(w,x,y,z) and g(w) specified a priori so that all you need to do is estimate a1, a2, a3, and a4? Also, would it be prudent to include an intercept in your model so that you estimate F(w,x,y,z) = a0 + (a1*g(w)) + (a2*x) + (a3*y) + (a4*z) And too, can we assume that the...
user's latest post:
Analysis Question: Which...
Published (2009-12-22 08:18:00)
1. All values of g(w) will be known a priori, and the F(w,x,y,z) will be known (for a very large number of specific {w, x, y, z} combinations) as they are the results of the "observations" we're making. 2. Yes, we should probably calculate the intercept value, a0, as well. 3. Yes, I have been assuming the residuals are normally distributed. Thanks!
user's latest post:
Chi square test for difference...
Published (2009-12-21 18:18:00)
Hi You can't have both BY LEVEL and LEVEL in your model statement. That would lead to an error, because you would be stratifying on the variable you are trying to model. You could do the same thing only without the BY statement, or you could do a PROC FREQ with a BY STATEMENT HTH Peter
user's latest post:
Check date range from a datasets...
Published (2009-12-25 12:23:00)
Hi: I'm not sure what you mean by selecting entries...do you want a report (such as from PROC PRINT) or a dataset (such as from PROC SQL)??? If all you want is a report, you could use a WHERE clause in PROC PRINT. Something like this (assumes that date1 and date2 are numeric variables in the SAS dataset): proc print data=lib.data; title 'Use WHERE clause for selection'; where 10 between month(date1) and month(date2) and...
user's latest post:
Check date range from a datasets...
Published (2009-12-25 21:55:00)
thx cythnia!! actually, proc print or data selection is okay, the dataset may be like this N Date1 Date2 Value 1 21Jan2009 22Feb2009 5 2 21Jan2009 22Mar2009 6 3 21May2009 22Nov2009 9 * 4 21Oct2009 22Oct2009 34 * 5 21Jan2009 22June2009 6 6 3 Mar 2005 22Oct2009 3 * 7 3 Mar 2007 31Dec2999 2 * then i want to select records with any dates in October 2009 fall into Date 1 and Date2 after i rethink about this scenario, i think if date1 =...
user's latest post:
Analysis Question
Published (2009-12-16 13:57:00)
That is exactly what I am looking for. I only have 2 years of good data (8 quarters) which I know is a problem (not enough data!) I would like to know that when xxx=12 it is "ok" and when xxx=345 is it not (or whatever) based on the previous set of data for that measure.
user's latest post:
Proc TRANSREG for conjoint...
Published (2009-12-16 20:38:00)
I tried to use proc transreg to do a conjoint analysis. Due to the design problem, I have to fit the model without the intercept. I tried below code: proc transreg data=test1 utilities short; model identity(y) = class(f1 f2 f3 / zero=sum)/noint; output out=test2; run; It always had below note in SAS log: NOTE: NOINT is only valid when there is no implicit intercept and when no variables are iteratively transformed. NOTE: The NOINT option will...
user's latest post:
Modeling residuals from GENMOD...
Published (2009-12-16 18:30:00)
Hello. I'm wondering if modeling the residual spatial structure for a binary response using these PROCs is "appropriate." Want to use Moran's I to test (under random assumption) for spatial autocorrelation in a binary response, modeled as a function of covariates + trend surface. Any thoughts would be appreciated. Cheers!
user's latest post:
Homogeneity of Variances in a...
Published (2009-12-16 14:51:00)
I would like to combine data from a series ( 7 seasons) of experiments that have a split plot design with nitrogen fertilization as main plot and genotypes as subplots. Therefore I have to check homogeneity of variances for error A and error B. I have preformed the individual anovas model 1 fixed effects, for each experiment and used Bartlett?s test. But I would like to use Levene?s test being this test less sensible to departures from...
|
|
|
|
Latest active threads on SAS Statistical Procedures
::
Started 1 day, 18 hours ago (2009-12-25 12:23:00)
by Cynthia@sas
Hi: I'm not sure what you mean by selecting entries...do you want a report (such as from PROC PRINT) or a dataset (such as from PROC SQL)??? If all you want is a report, you could use a WHERE clause in PROC PRINT. Something like this (assumes that date1 and date2 are numeric variables in the SAS dataset): proc print data=lib.data; title 'Use WHERE clause for ...
Started 2 days, 3 hours ago (2009-12-25 03:21:00)
by Patrick
data have; infile datalines; input patient_id date anydtdte. doses $; format date date9.; datalines; 101 1jan2009 10mg ; data want(drop=i); set have; do i=1 to 5; output; date=date+1; end; run; proc print data=want; run;
Started 2 days, 16 hours ago (2009-12-24 13:47:00)
by Cynthia@sas
Hi: The log and output windows are just ASCII text -- fairly easy to clear. But, the GRAPH1 window is a "viewer" into WORK.GSEG, a SAS catalog, where the graph segment entries are stored during your session. So they are not as easily cleared as the ASCII log and output window. You can also use PROC CATALOG to delete WORK.GSEG, as described in this note: http://support.sas....
Started 3 days, 19 hours ago (2009-12-23 10:31:00)
by Doc@Duke
The SAS Power and Sample Size procedures will do that. There is a nice interface in 9.2. You can also use Russ Lenth's web site ( http://www.stat.uiowa.edu/~rlenth/Power/ ). The sample size computation for a matched case-control study can be done with a one-sample test where the effect-size is the difference between the two groups. Doc Muhlbaier Duke
Started 3 days, 22 hours ago (2009-12-23 08:14:00)
by data _null_;
I think you need to use the RUN; statement. GLM may also like a QUIT.
Started 1 week, 1 day ago (2009-12-18 17:58:00)
by Dale
You don't provide all relevant information to answer your question. For instance, are there any parameters in F(w,x,y,z) or g(w) which need to be estimated? Or are F(w,x,y,z) and g(w) specified a priori so that all you need to do is estimate a1, a2, a3, and a4? Also, would it be prudent to include an intercept in your model so that you estimate F(w,x,y,z) = a0 + (a1*g(w...
Started 1 week, 4 days ago (2009-12-15 18:46:00)
by plf515
> Hi, > > I want to test whether there is a significant > difference in proportions between two groups at each > level of a 20-level variable. I've been trying to > use proc surveyfreq with the code below, but it isn't > providing the results for the chisquare test (only > frequencies and standard errors for each level of the > variable). > > proc surveyfreq data=new; > ...
|
|
Hot threads for last week on SAS Statistical Procedures
::
Started 1 week, 1 day ago (2009-12-18 17:58:00)
by Dale
You don't provide all relevant information to answer your question. For instance, are there any parameters in F(w,x,y,z) or g(w) which need to be estimated? Or are F(w,x,y,z) and g(w) specified a priori so that all you need to do is estimate a1, a2, a3, and a4? Also, would it be prudent to include an intercept in your model so that you estimate F(w,x,y,z) = a0 + (a1*g(w...
Started 1 day, 18 hours ago (2009-12-25 12:23:00)
by Cynthia@sas
Hi: I'm not sure what you mean by selecting entries...do you want a report (such as from PROC PRINT) or a dataset (such as from PROC SQL)??? If all you want is a report, you could use a WHERE clause in PROC PRINT. Something like this (assumes that date1 and date2 are numeric variables in the SAS dataset): proc print data=lib.data; title 'Use WHERE clause for ...
Started 2 days, 3 hours ago (2009-12-25 03:21:00)
by Patrick
data have; infile datalines; input patient_id date anydtdte. doses $; format date date9.; datalines; 101 1jan2009 10mg ; data want(drop=i); set have; do i=1 to 5; output; date=date+1; end; run; proc print data=want; run;
Started 6 days, 16 hours ago (2009-12-20 14:13:00)
by Doc@Duke
recode the variables so they are in the order you want.
Started 1 week, 4 days ago (2009-12-15 18:46:00)
by plf515
> Hi, > > I want to test whether there is a significant > difference in proportions between two groups at each > level of a 20-level variable. I've been trying to > use proc surveyfreq with the code below, but it isn't > providing the results for the chisquare test (only > frequencies and standard errors for each level of the > variable). > > proc surveyfreq data=new; > ...
Started 2 days, 16 hours ago (2009-12-24 13:47:00)
by Cynthia@sas
Hi: The log and output windows are just ASCII text -- fairly easy to clear. But, the GRAPH1 window is a "viewer" into WORK.GSEG, a SAS catalog, where the graph segment entries are stored during your session. So they are not as easily cleared as the ASCII log and output window. You can also use PROC CATALOG to delete WORK.GSEG, as described in this note: http://support.sas....
Started 3 days, 19 hours ago (2009-12-23 10:31:00)
by Doc@Duke
The SAS Power and Sample Size procedures will do that. There is a nice interface in 9.2. You can also use Russ Lenth's web site ( http://www.stat.uiowa.edu/~rlenth/Power/ ). The sample size computation for a matched case-control study can be done with a one-sample test where the effect-size is the difference between the two groups. Doc Muhlbaier Duke
Started 3 days, 22 hours ago (2009-12-23 08:14:00)
by data _null_;
I think you need to use the RUN; statement. GLM may also like a QUIT.
|
|