Displaying 20 results from an estimated 700 matches similar to: "Critical values of r"
2010 Mar 28
6
Coding of categorical variables for logistic regression?
Hello,
I am trying to do a logistic regression and have one predictor variable
(x) that is ratio and two predictor variables (y and z) that are
categorical. These have three levels each which I have called "High",
"Medium" and "Low".
My question: do I need to use a numerical coding scheme for the
categorical variables as required by some statistical software
2009 Mar 21
5
Fisher test problem
Hi, I noted a discrepancy between R and openepi when I ran a fisher test
with the same matrix. In R:
> a=matrix(c(1,2,6,17), nrow=2)
> a
[,1] [,2]
[1,] 1 6
[2,] 2 17
> fisher.test(a, conf.int=T)
Fisher's Exact Test for Count Data
data: a
p-value = 1
alternative hypothesis: true odds ratio is not equal to 1
95 percent confidence interval:
0.02061498
2008 Sep 27
2
Trend graph
Dear R Gurus,
I have a problem related to plot.
For example, I have two variables, pre and post.
pre <- c(1,2,3,4,5)
post <- c(2,5,7,2,3)
How can I plot a line graph similar to this one?
http://www.pubmedcentral.nih.gov/articlerender.fcgi?artid=1847566&rendertype=figure&id=F1
Would you please provide me a keyword so that I can search. I don't
know what is the name of this
2010 Feb 25
3
R and Wordpress
Dear R helpers,
I have a question regarding wordpress and R. I have asked this
question in Wordpress support (
http://wordpress.org/support/topic/368312 ) but there is no answer so
far, maybe the R community can have a better answer.
I followed the excellent tutorial on r-statistics-blog (
http://www.r-statistics.com/2010/02/r-syntax-highlight-on-your-blog-a-wordpress-plugin/
) to enable syntax
2008 Jul 12
5
shapiro wilk normality test
Hi everybody,
somehow i dont get the shapiro wilk test for normality. i just can?t
find what the H0 is .
i tried :
shapiro.test(rnorm(5000))
Shapiro-Wilk normality test
data: rnorm(5000)
W = 0.9997, p-value = 0.6205
If normality is the H0, the test says it?s probably not normal, doesn
?t it ?
5000 is the biggest n allowed by the test...
are there any other test ? ( i know qqnorm
2007 Nov 02
2
Shading area under PDF of t -distribution
Dear R experts,
I have plot the PDF of t distribution with df = 74.
curve(dt(x,df=74),from=-4, to=4)
how can I shade the area under curve (for example, col="red") from t=+- 1.996?
Thank you.
Regards,
CH
--
CH Chan
Research Assistant - KWH
http://www.macgrass.com
2009 Dec 14
1
help: forest plots
Hi All,
I'm fitting a Poisson regression. And I want to plot 95% Confidence Interval
of Regression Estimates.
After coming back to original scale (using following formula):
exponential(estimate +/- 1.96*SE),
at best I can get the output in the form of estimates, lower_limit,
upper_limit values.
As far I know forest() in metafor package needs input in the form of
estimates and their
2008 Nov 07
1
kruskal test in R
Hi,
i have a question in R,
How and what command you need to do to run a kruskal-wallis test without the built in command 'kruskal.test'?
many thanks.
_________________________________________________________________
[[alternative HTML version deleted]]
2007 Nov 04
2
install problem 2.6 mac os x 10.5
Hi everyone,
I am trying to install R-2.6 over my 2.5.1 installation on Mac OS X
10.5.
R version 2.5.1 (2007-06-27)
I double-click the installer package,
1) Click Continue
2) Click Continue
3) Click Continue + Click Agree
On the "Installation Type" dialog screen, all four options are grayed
out, with skip beside them. The Install button is also grayed out.
If I click the
2007 Nov 04
1
Installing R on Mac OS X Leopard
Hi there,
I've used R before, but I just got a new computer with Leopard and I'm
having trouble installing. I download the installer, but when I reach the
end of the install process, the "install" button remains gray and
unclickable. I've tried both standard and custom, as well as installing on
my flash disk, to no avail.
Any suggestions? I'd rather not build from
2007 Nov 22
1
dev.off()
Dear Sir
Sir when I use "png" function to save graph. At last it is written dev.off().
it does not produce any postscript file.
Please help in this regard
Thank you
--
AMINA SHAHZADI
Department of Statistics
GC University Lahore, Pakistan.
[[alternative HTML version deleted]]
2008 Nov 28
1
R help
Dear Sir
I am Amit Nirmalkar, M. Sc. Statistics.
I generally use SPSS package for analysis.
I wanted to run Conditional Logistic Regression in SPSS but this technique
is not available.
So I thought of R s/w.
I am totally blank about R.
Can you please send me few of R.
Also how to run Conditional Logistic Regression in R.
Thanks
--
Amit Nirmalkar
[[alternative HTML version deleted]]
2009 Apr 21
1
Quality control and possible QC in R book?
Dear R People:
Is there a Quality Control in R book that would be accessible for
undergraduates, please?
I'm teaching a QC course in the fall semester and would be happy to
have a Use R book or something like that, please.
Thanks in advance,
Erin
--
Erin Hodgess
Associate Professor
Department of Computer and Mathematical Sciences
University of Houston - Downtown
mailto: erinm.hodgess at
2010 Mar 17
1
Effect Size Formaula and Calulations in R
Hello,
I would like to find out how to use R to compute the effect size of two
samples for a two sample t test. Is there a formula for the fisher's exact
test? Any R code and/or formula would be greatly appreciated.
Thanks,
Jim
[[alternative HTML version deleted]]
2007 Nov 13
3
cronbach's alpha
hie
1...i'm trying to carryout a relibility testusing cronbach's alpha what fuctin do i use.
2.. this is more of a statistical question.if the alpha value for all the variables is negative what does it mean. and if the alpha value is negative for all tyha variables but is greater than 0.7 for some sections of the variables what does that mean
thanks in advance
2007 Oct 03
3
P-value
Hi,
why don't you try try
ks.test(VeriSeti1, VeriSeti2)$p.value
All the best
Jenny
>How can i print only the P-Value of the kolmogorov smirnov test?
>
>
>> ks.test(VeriSeti1, VeriSeti2)
>
> Two-sample Kolmogorov-Smirnov test
>
>data: VeriSeti1 and VeriSeti2
>D = 0.5, p-value = 0.4413
>alternative hypothesis: two-sided
>
>
>This expression
2008 Mar 19
3
How to get the P-values from GLM results?
Hello all,
I have a question concerning how to get the P-value for a explanatory
variables based on GLM.
I'll run multiple regressions with GLM, and I'll need the P-value for the
same explanatory variable from these multiple GLM results.
I check the help and there are quite a few Value options but I just can
not find anyone about the p-value.
Could anyone help me with that?
2008 Aug 14
3
Comparison of demographics between 2 study samples
Dear All:
I have a clinical study where I would like to compare the demographic information for 2 samples in a study. The demographics include both categorical and continuous variables. I would like to be able to say whether the demographics are significantly different or not.
The majority of papers that I have read use multiple techniques to achieve this (e.g., t-test for the continuous
2007 Sep 19
2
recommended package/docs for analyzing multiple choice tests
Hi,
What package would you recommend for analyzing the
validity/reliability of multiple choice tests. Doing things such as
classical test analysis, factor analysis, item response theory.
I've used psychometric (item.exam), MiscPsycho (alpha.Summary), and ltm
(rcor.test). MiscPsycho reported the numbers most similar to what I get
in SPSS: corrected point biserial correlations,
2008 Oct 30
2
p-value=0 running coxph
Dear all,
I have a question concerning the p-value. When running coxph I get a p-value
= 0. :confused:
Can this be true? Why aren?t there decimal points? Is there a way to find
out the exact p-value?
Here is the output:
----------------------------------------------------------------------------------------------------
Call:
coxph(formula = Surv(start, stop, status) ~ Albumin_gproL, data = dial,