Displaying 8 results from an estimated 8 matches for "cheba".
Did you mean:
ceba
2010 Apr 01
3
reading excel into R
...so googled it and read about it! I understood that in order to
read excel sheet into R you need to open it and saved it as csv or text, is
this true? or you can use read.delim2 and read.csv2 to do this without the
following error
> dat <- read.csv2(file="C:\\Dokumente und
Einstellungen\\Cheba\\Desktop\\Rtemp\\ Results2010.xls",header = TRUE)
Warnmeldung:
In read.table(file = file, header = header, sep = sep, quote = quote, :
unvollständige letzte Zeile von readTableHeader gefunden in 'C:\\Dokumente
und Einstellungen\\Cheba\\Desktop\\Rtemp\\ Results2010.xls'
> dat
[1]...
2010 Mar 17
3
save data to an R object
Dear R people,
Is it possible to save three data sets in an R object and to call each data
from this object independently!
Regards,
Cheba
[[alternative HTML version deleted]]
2010 Aug 04
2
by group testing
...p)
my.sort.data <- my.data[order(my.data[,1]),]
I would like to test wether there is a different between group A and B for
each mause type!
I was trying to use by, table and fisher.test/prop.test functions to do
this, but I could not solve this problem, any suggestion?
Many thanks in advance,
Cheba
[[alternative HTML version deleted]]
2010 Apr 06
1
median of two groups
...est to test whether the median of two groups are
statistically significant? Is it the wilcox.test, mood.test or the ks.test?
In the text book I have got there is explanation for the Wilcoxon (Mann
Whitney) test which tests ob the two variable are from the same population
and also ks.test!
Regards,
Cheba
[[alternative HTML version deleted]]
2011 Apr 06
1
metaplot
Dear all,
I have a four variable: Stuy.Name, OR, 95%LCI and 95%UCI and I would like to
create a meta analysis plot. I can't use meta.MH function in metaplot
because I do not have
n.trt, n.ctrl, col.trt, col.ctrl are not available! Is there an alternative
way to do it?
Many thanks in advance,
Cheba
[[alternative HTML version deleted]]
2010 Jun 28
2
plotmeans
Hello,
I am using
library(gplots)
to do something like
data(state)
x1 <- state.area/10000
x2 <- x1+round((rnorm(length(state.area),3,3)))
plotmeans(x1 ~ state.region)
Is it possible to plot x2 to x1 in the same graph, something like:
linesmeans(x2 ~ state.region)
Best wishes,
Cheba
[[alternative HTML version deleted]]
2010 Oct 30
1
two group cox model
...ewdata=ovarian),col=c(1,2))
legend("bottomleft", legend=c("rx = 0", "rx = 1"),
lty=c(1,2),col=c(1,2))
Is this correct to compare these two groups? Is the 0.31 the p-value that
the median f two groups are equal
Why lty does not work here?
Many thanks in advance.
Cheba
[[alternative HTML version deleted]]
2012 Mar 13
1
p-value of the pooled Z score
...h way is
more appropriate
b <- c( -0.205,1.040,0.087)
s <- c(0.449,0.167,0.241)
n <- c(310, 342, 348)
z <- b/s
Z <- sum(z)/sqrt(length(n))
P <- 2*(1-pnorm(abs(Z)))
P
w <- sqrt(n)
Zw <- sum(w * z)/sqrt(sum(w^2))
Pw <- 1 - pchisq(Zw * Zw, 1)
Pw
Many thanks in advance,
Cheba
[[alternative HTML version deleted]]