Displaying 20 results from an estimated 400 matches similar to: "Problem applying McNemar's - Different values in SPSS and R"
2006 Dec 26
3
McNemar test in R & SPSS
Hello,
I am hoping someone can clarify why I might obtain a quite different value
in R & SPSS for a McNemar test I ran.
Firstly, here is the R syntax & output
R OUTPUT
> mctest <- as.table(matrix(c(128,29,331,430),
+ ncol =2, dimnames = list(group=c("preMHT","postMHT"),
+ assault=c("yes","no"))))
> mctest
assault
2010 Sep 14
1
Using McNemar's test to detect shifts in response from pre- to post-treatment
Hello Everyone,
I've been asked to check if there is a significant difference in the following:
Pre Post
Group A 15/19 14/19
Group B 14/19 10/19
My sense is that I need to perform McNemar's test on these data because responses are correlated within patient from the pre-test to the post-test.
The question is how to do this. I'm a SAS user
2005 Jan 24
1
mcnemar.test odds ratios, CI, etc.
Does anyone know of another version of the Mcnemar test that provides:
1. Odds Ratios
2. 95% Confidence intervals of the Odds Ratios
3. Sample probability
4. 95% Confidence intervals of the sample probability
Obviously the Odds Ratios and Sample probabilities are easy to calculate
from the contingency table, but I would appreciate any help on how to
calculate the confidence
2009 Jul 19
1
Can I use "mcnemar.test" for 3*3 tables (or is there a bug in the command?)
Hello all,
I wish to perform a mcnemar test for a 3 by 3 matrix.
By running the slandered R command I am getting a result but I am not sure I
am getting the correct one.
Here is an example code:
(tt <- as.table(t(matrix(c(1,4,1 ,
0,5,5,
3,1,5), ncol = 3))))
mcnemar.test(tt, correct=T)
#And I get:
McNemar's Chi-squared
2010 Jan 28
0
Update to exact2x2 package: Exact McNemar's test
Hi all,
I have updated the exact2x2 package which calculates exact conditional tests and the matching confidence intervals for 2x2 tables. The big change in the update is to allow the option paired=TRUE which gives an exact McNemar's test together with odds ratio estimates and confidence intervals. See vignette("exactMcNemar") for details.
The original release is described in the
2010 Jan 28
0
Update to exact2x2 package: Exact McNemar's test
Hi all,
I have updated the exact2x2 package which calculates exact conditional tests and the matching confidence intervals for 2x2 tables. The big change in the update is to allow the option paired=TRUE which gives an exact McNemar's test together with odds ratio estimates and confidence intervals. See vignette("exactMcNemar") for details.
The original release is described in the
2011 Apr 20
1
possible minor bug in fisher.test
Hi,
I received a bug report for my exact2x2 package that seems to apply to fisher.test in the stats package also.
Here is some code which creates the error:
>x<-factor(c(0,1,1),levels=c(0,1))
> y<-factor(c(1,1,1),levels=c(0,1))
> fisher.test(x,y)
Error in fisher.test(x, y) : 'x' and 'y' must have at least 2 levels
>
The help says that x and y could be
2009 Jun 22
2
Automatically Adding Categories
Greetings,
I have two files which contain responses to a series of multiple
choice questions. One
file contains responses before an "intervention" and the other
contains the responses afterward.
There were three possible responses to each question: D, F, T (for
Don't Know, False, and True).
I would like to try McNemar's test to determine if there was any
significant
2012 Nov 20
0
McNemar's Test Question
Hi all,
I'm wondering if there's a way that I can perform McNemar's test for a small
dataset easier.
I know this may be different from the usual way, but I'm hoping to throw it
out there for help.
For now, my orginnal dataset looks something like this...
Chemical shifts Pre_yes Pre_no Post_yes Post_no
1 20 23 30
2011 Jan 18
1
Choosing statistical test - Fisher's Exact Test?
Hi I was wondering whether anyone can help me with this problem....it's been
driving me nuts, I've been trying to figure it out for months and months
without success!! Basically I have a group of participants who attended 2
experimental sessions a few months apart. I took measures of the way they
approach two tasks at Time 1 and the same two tasks at Time 2. I have
categorical data (a
2013 Feb 01
2
Nested loop and output help
Hello Everyone,
My name is Thomas and I have been using R for one week. I recently found
your site and have been able to search the archives of posts. This has
given me some great information that has allowed me to craft an initial
design to an inquiry I would like to make into the breakdown of McNemar's
test. I have read an intro to R manual and the posting guides and hope I am
not violating
2009 Jun 01
1
using "cochran.test()" as a "mcnemar.test()" ?
Hello all
I wish to perform a mcnemar.test() for a 5X5 matrix.
Wikipedia tells me (http://en.wikipedia.org/wiki/Cochran_test) I should turn
to cochran.test.
The only place I found it was in the "outliers" package, but the command
cochran.test() acts differently then mcnemar.test() , and doesn't take a
table as input.
Any ideas on how to use it ?
#Example code:
aa =
2009 Jul 24
2
How to test frequency independence (in a 2 by 2 table) with many missing values
Hello dear R help group.
My question is statistical and not R specific, yet I hope some of you might
be willing to help.
*Experiment settings*: We have a list of subjects. each of them went
through two tests with the answer to each can be either 0 or 1.
*Goal*: We want to know if the two experiments yielded different results in
the subjects answers.
*Statistical test (and why it won't
2006 Apr 13
1
about McNemar
Hello sir: How can I perform McNemar (paired chi square test) by using R?
Thanks!
------------------------------
*******************************************
Xin Meng
Capitalbio Corporation
National Engineering Research Center
for Beijing Biochip Technology
BioPharma-informatics & Software Dept.
Research Engineer
Tel: +86-10-80715888/80726868-6438
Fax: +86-10-80726790
Email??xmeng
2009 Feb 10
6
OT: A test with dependent samples.
I am appealing to the general collective wisdom of this
list in respect of a statistics (rather than R) question. This question
comes to me from a friend who is a veterinary oncologist. In a study
that
she is writing up there were 73 cats who were treated with a drug called
piroxicam. None of the cats were observed to be subject to vomiting
prior
to treatment; 12 of the cats were subject to
2010 Apr 27
1
Should mcnemar.test use as.factor instead of factor
I am working with the mcnemar.test function and the help does not show a maintainer/author, but it is part of the stats package.
My issue is that I want to use the test on 2 variables with possible values of 0:3, in one of the tests one of the variables does not have any 3's, so to make sure that the matrix is square I do:
> x <- factor(x, levels=0:3)
> y <- factor(y, levels=0:3)
2006 Apr 06
2
Using --link-dest works on small directory tree but not large one
I'm using version 2.6.3 on OS X. I'm trying to use --link-dest to keep some
rolling backups of production websites. There is about 2GB of data in 60,000
total files. I do an initial rsync to get an initial copy of the data, and
each day thereafter I run rsync again with --link-dest to create a new daily
backup. For some reason, in the subsequent runs, rsync updates a whole lot
of files
2010 Oct 06
0
update to exact2x2 package
Hi all,
I have updated the exact2x2 package. The update corrects an error that can sometimes occur in the confidence intervals when the number of counts are large and tsmethod="minlike". In addition to fixing the bug, the correction gives a much faster method for calculating the confidence interval.
The package gives exact confidence intervals that match the p-values for Fisher's
2010 Oct 06
0
update to exact2x2 package
Hi all,
I have updated the exact2x2 package. The update corrects an error that can sometimes occur in the confidence intervals when the number of counts are large and tsmethod="minlike". In addition to fixing the bug, the correction gives a much faster method for calculating the confidence interval.
The package gives exact confidence intervals that match the p-values for Fisher's
2015 Jan 29
3
pregunta
Estimados
Para analizar tres muestras cualitativas independientes se utiliza Cochran-Mantel-Haenszel test
?Cual script es el adecuado para analizar tres variables dependientes? en MCNEMAR solo se permite analizar dos variables cualitaticvas dependientes
saludos
José
[[alternative HTML version deleted]]