Displaying 3 results from an estimated 3 matches for "t2h".
Did you mean:
c2h
2012 May 15
1
vector w/o arithmetic addition for boxplot
...class(t1W) produces "numeric" (1000 observations of 1's and 0's)
To create the box plot I am using
boxplot(residuals(IRR)~ treatRace_clean)
where I have tried treatRace_clean as both of the following
treatRace_clean <- as.factor(as.vector(t1W + t1B + t1H + t1O + t2W + t2B +
t2H + t2O + t3W + t3B +
t3H + t3O + t4W + t4B + t4H + t4O))
treatRace_clean <- as.vector(c(t1W, t1B ,t1H ,t1O, t2W , t2B ,t2H ,t2O ,t3W
, t3B,
t3H + t3O , t4W , t4B , t4H , t4O))
However, I continue to get this error code:
Error: $ operator is invalid for atomic vectors
Thoughts?
--
View this...
2013 Jan 31
1
facet plot
Hi all,
I want to plot a facet plot with column names as x and column values as y.
One plot for each row. here is part of my dataset:
Gene T0h T0.25h T0.5h T1h T2h T3h T6h T12h T24h T48h NM_001001130 68 95
56 43 66 62 68 90 63 89 NM_001001144 0 1 4 0 1 1 1 4 1 2 NM_001001152 79
129 52 50 24 45 130 154 112 147 NM_001001160 1 1 2 0 0 1 0 0 0 1
NM_001001176 0 0 0 0 0 0 0 0 0 0 NM_001001177 1 3 2 3 0 1 1 0 2 0
NM_001001178 0 0 0 0 0 0 0 0 0 0 NM_001001179 0...
2012 May 23
1
edgeR: design matrix setup
I have a data frame like this:
T0h T0.25h T0.5h T1h T2h T3h T6h T12h T24h T48h
C0h C0.25h C0.5h C1h C2h C3h C6h C12h C24h C48h
NM_001001130 68 95 56 43 66 62 68 90 63 89 65
85 58 49 81 49 76 73 48 77
NM_001001152 79 129 52 50 24 45 130 154 112 147 56
85 67 33 52 31 93...