Displaying 20 results from an estimated 1000 matches similar to: "Odds Ratio for evaluating Diagnostic tests"
2007 Jun 11
1
epitools and R 2.5
At work after updating to R 2.5 I get an error using epitab from package
epitools, when at home (R 2.4) I get no error. Could someone help me?
Thanks
Pietro Bulian
Servizio di Onco-Ematologia Clinico-Sperimentale
I.R.C.C.S. Centro di Riferimento Oncologico
Via Franco Gallini 2
33081 Aviano (PN) - Italy
phone: +39 0434 659 412
fax: +39 0434 659 409
e-mail: pbulian at cro.it
(at work)
2008 Jan 27
1
OR estimate
Hello,
I have a loop with 1000 repetitions which includes OR computation of an
exposure factor and outcome.
I compute OR like this:
t<-table(exposure,outcome)
oddsratio(t)$measure["estimate"]
This gives me the estimates for exposure=0 and exposure=1 but exposure=0 is
the reference group and i need only the estimate for exposure=1.
I specified a matrix OR with 3 columns (for OR
2010 Jan 27
1
Possible bug in fisher.test() (PR#14196)
# is there a bug in the calculation of the odds ratio in fisher.test?
# Nicholas Horton, nhorton at smith.edu Fri Jan 22 08:29:07 EST 2010
x1 = c(rep(0, 244), rep(1, 209))
x2 = c(rep(0, 177), rep(1, 67), rep(0, 169), rep(1, 40))
or1 = sum(x1==1&x2==1)*sum(x1==0&x2==0)/
(sum(x1==1&x2==0)*sum(x1==0&x2==1))
library(epitools)
or2 = oddsratio.wald(x1, x2)$measure[2,1]
or3 =
2005 Jun 24
1
comparing strength of association instead of strength of evidence?
Hi,
I asked this question before, which was hidden in a bunch of
questions. I repharse it here and hope I can get some help this time:
I have 2 contingency tables which have the same group variable Y. I
want to compare the strength of association between X1/Y and X2/Y. I
am not sure if comparing p-values IS the way even though the
probability of seeing such "weird" observation under H0
2010 Dec 29
1
Problem applying Chi-square in R and Cochran's Recommendations
Sir,
I have a problem here while applying chisquare test to the following Data (
below the subject of this mail) ...when I wanted to test the significance
using three different free statistical packages, here R, EpiInfo and
OpenEpi.
*Only OpenEpi accepts the test based on Cochran's Recommendations. *
R says " chi squared approximation may be incorrect."
Does it mean the same as
2010 Dec 28
1
Problem applying McNemar's - Different values in SPSS and R
Hi friends,
I get different values for McNemar's test in R and SPSS. Which one should i
rely on when the p values differ.
I came across this problem when i started learning R and seriously give up
on SPSS or any other proprietary software.
Thank u in advance
Output in SPSS follows
*Crosstab*
hsc
Total
ABN
NE
ABN
tvs
ABN
Count
40
3
43
Row %
93.0%
7.0%
2007 Feb 24
1
Woolf's test, Odds ratio, stratification
Just a general question concerning the woolf test (package vcd), when we have
stratified data (2x2 tables) and when the p.value of the woolf-test is
below 0.05 then we assume that there is a heterogeneity and a common odds
ratio cannot be computed?
Does this mean that we have to try to add more stratification variables
(stratify more) to make the woolf-test p.value insignificant?
Also in the
2010 Apr 12
1
R CMD check tells me 'no visible binding for global variable ', what does it mean?
When I run R CMD check on a package I have recently started work on I
get the following:
* checking R code for possible problems ... NOTE
addlinear: no visible binding for global variable 'x'
I appreciate that this is only a NOTE and so I assume is R's
equivalent of 'This is perfectly legal but I wonder whether it is
really what you intended' but I would like to understand
2012 May 04
0
oddsratio and some basic help on epitools
Here is a working snippet.
library(epitools)
mat <- matrix(c(10,15,60,25,98, 12,10,70,28,14, 9,11,68,10,12
,8,13,20,11,58) ,ncol=2)
colnames(mat) <- c("treatmentA","treatmentB")
row.names(mat) <- paste("Cond",rep(1:10,1))
dimnames(mat) <- list("Condition" = row.names(mat), "instrument" =
colnames(mat))
> mat
instrument
2010 Sep 19
1
odds ratios for n-way tables: seeking an *apply-able method
I'm looking for a way to generalize the calculation of (log) odds
ratios for 2 x 2 x {strata} frequency
tables in vcd::oddsratio() to R x C x {strata} tables.
For an R x C table, F, odds ratios can be defined
in several ways; one simple way, particularly for tables with ordered
factors, is to calculate the
set of continuation odds ratios, based on the (R-1)x(C-1) set of 2x2
tables with
2009 Nov 22
1
Metaplot Axis Annotation
Hello,
We are looking to adjust the font size of the axis annotation on the graph
that results from use of the metaplot() function. Metaplot seems to respond
to cex and cex.lab to change those graphical parameters, but it doesn't
respond to cex.axis. Is there a way to work around this by creating a
customized x-axis, and if so, how?
Thanks for all your help. Syntax is below.
Best,
Dawn
2012 May 04
0
oddsratio epitool and chi-square
Here is a working snippet.
library(epitools)
mat <- matrix(c(10,15,60,25,98, 12,10,70,28,14, 9,11,68,10,12
,8,13,20,11,58) ,ncol=2)
colnames(mat) <- c("treatmentA","treatmentB")
row.names(mat) <- paste("Cond",rep(1:10,1))
dimnames(mat) <- list("Condition" = row.names(mat), "instrument" =
colnames(mat))
> mat
instrument
2012 May 04
0
epitools question
Here is a working snippet.
library(epitools)
mat <- matrix(c(10,15,60,25,98, 12,10,70,28,14, 9,11,68,10,12
,8,13,20,11,58) ,ncol=2)
colnames(mat) <- c("treatmentA","treatmentB")
row.names(mat) <- paste("Cond",rep(1:10,1))
dimnames(mat) <- list("Condition" = row.names(mat), "instrument" =
colnames(mat))
> mat
instrument
2006 Jul 10
2
''uninitialized constant'' error
Hi All,
I am fairly new to Ruby and backgroundRB. I am trying to run a simple example in Windows to get my feet wet with backgroundRB and am running into an ''uninitialized constant'' error when I invoke the controller on my rails app.
In ''MyTest'' Controller
-------------------
def longrun
session[:job_key] = MiddleMan.new_worker(:class =>
2009 Nov 28
3
Dovecot Deliver CPU usage
Hi All,
We have upgraded the dovecot from 1.0 to 1.2.8. After
upgradation we have noticed that dovecot deliver process is utilizing a lot
of CPU. As a result the mailsystem will stop working. When we limit the no
of procs in postfix for dovecot deliver the CPU usage will come down. But
we are not facing this problem with the previous version. Below is the log
files for dovecot when the error
2006 Nov 17
2
X window for Centos-Serer CD 4.3
Hi All,
First of all thanks to Centos Team for making a Centos-Server-CD. Its very
handy it made my life easy.
Now i have a small problem i want to have X on the installed box from
Centos-Server CD. How can i update from Yum or wht are the packages i need
to install to start X.
----------------------------
With Best Regards
Aravind G V
"You know what keeps me going???
Whenever I get all
2015 Jan 15
2
[LLVMdev] DataFlowSanitizer using wrong memory layout
Hi all,
Any one tried using DataFlowSanitizer on Linux x86_64?
I tried on:
3.13.0-44-generic #73~precise1-Ubuntu SMP Wed Dec 17 00:39:15 UTC 2014 x86_64 x86_64 x86_64 GNU/Linux
It assumes wrong memory layout and remaps application code segment as shadow memory, thus causing SIGSEV (Segmentation fault).
Is this know? and fix under way?
-Thanks,
Aravind
-------------- next part
2013 Nov 20
2
Want to restrict puppet module execute every 30mins
Hi,
I have created a puppet module that performs below steps:
1. stop application service
2. take backup of existing application
3. download application artifact
4. install the application
5. some configuration stuff
6. start the application service
Since the agent will poll the master every 30mins all these steps are
executed every 30mins which I do not want.
I want to enforce the puppet
2007 May 03
2
Can vista client can negotiage smb2 protocol with the samba server?
Hi,
I have a specific question about the SMB 2 (or CIFS 2 version protocol).
SMB2 was introduced with Microsoft Vista and is a redesign of the older SMB
protocol. (http://wiki.ethereal.com/SMB2)
Is current samba 3.0.xx release (or samba 4 release) support this protocol
when vista client tries to establish session with the samba server.
What are the features or advantages of getting this
2015 Apr 07
1
Package compilation woes on submission.
Hello,
I am trying to submit a new package to CRAN. I had checked the
packages with R-devel and R-release in windows 7 local and ubuntu
12.04 local. The package has a C file in src folder which successfully
compiled in all the cases (there were few trivial warnings).
I had submitted the package last week and was asked to resubmit with
few changes in the description file.
However upon