Displaying 4 results from an estimated 4 matches for "y98".
Did you mean:
98
2011 Apr 19
2
Markov transition matrices , missing transitions for certain years
...t I'm working with is 125 boxes over 14
years that can be occupied by 7 different species, though I have provided a
slimmed down portion for this question...
-
A box can be in 1 of 4 "states" (i.e. bird species): 1,2,3,4
Included here are 4 "box histories" over 4 years (y97, y98, y99, y00)
These are the box histories
> b1 <- c(1,1,4,2)
> b2 <- c(1,4,4,3)
> b3 <- c(4,4,1,2)
> b4 <- c(3,1,1,1)
> boxes <- data.frame(rbind(b1,b2,b3,b4))
> colnames(boxes) <- c("y97","y98","y99","y00")
> boxes
y9...
2006 Jan 16
1
How to analysis Y98 chips using RankProd package?
Dear R and Bioconductor Helpers,
I am using a package called RankProd under Bioconductor to analysis my
Y98 (yeast) microarray data. I had no problem following the example in
the vignette but got stocked when I tried to analyze my own data.
When I tried to run the following command,
RP.out <- RP(rrf.sub, rrf.cl.sub, gene.names = y98.gnames, rand = 123)
I got the following response:
Rank Product...
2009 May 05
2
smoothing spline in package gam
dear all,
i have a little question, but it make me torment long time
hope you can help me and give some advices , thanks
i use smoothing spline in package gam
the model
> m1=gam(y~ost+wst+park10+sch50+comm+build+suite+y05+y06+y07+y99+y98+s(builarea)+s(age)+s(fl)+s(totfl)+s(cbd)+s(redl))
and summary(m1) can show the "s"(smoothing) variables' Signif. codes.
but i also want to know the Parametric coefficients and their Signif. codes. like ost, wst...etc.
is that possible to get the Parametric coefficients'...
2009 May 09
2
need help with chisq
I am very new to R. I have some data from a CVS stored in vdata with 4
columns labeled:
X08, Y08, X09, Y09.
I have created two new "columns" like so:
Z08 <- (vdata$X08-vdata$Y08)
Z09 <- (vdata$X09-vdata$Y09)
I would like to use chisq.test for each "row" and output the p-value
for each in a stored variable. I don't know how to do it. Can you
help?
so far I have