Displaying 4 results from an estimated 4 matches for "mdata2".
Did you mean:
data2
2011 Aug 15
3
Plot from function
*I have the following function:*
/plot_mi_time = function(mdata, miname) {
mdata2 = mdata[row.names(hakat) == miname, ]
print(mdata2)
xcoords <- c(1,1,2,2,3,3,4,4,5,5,6,6)
plot(c(xcoords), mdata2, xaxt="n", ylab="Expression", xlab="Time(h)", ,
main=miname)
axis(1, at=xcoords,
labels=c("a","a","b","b...
2011 Jun 01
2
re-write plot function for ggplot
Hi, I have the following function that i use to plot graphs.
plot_mi_time = function(mdata, miname) {
mdata2 = mdata[row.names(mir_test3) == miname, ]
# print(mdata2)
xcoords <- c(1,1,2,2,3,3)
plot(xcoords, mdata2, xaxt="n", ylab="Expression", xlab="Time(h)", ,
main=miname)
axis(1, at=xcoords, labels=c("a","a","b","b",&q...
2011 May 31
0
Plot duplicate csv columns
I am using the following function to plot columns from a CSV-file:
plot_mi_time = function(mdata, miname) {
mdata2 = mdata[row.names(mir_test) == miname, ]
# print(mdata2)
plot(c(1:3), mdata2, xaxt="n", ylab="Expression", xlab="Time(h)", ,
main=miname, pch=16)
axis(1, at=c(1,2,3),labels=c("a","b","c"))
}
No I have a CSV file with 2 replicate...
2011 Oct 06
3
Wide to long form conversion
I have some data 'myData' in wide form (attached at the end), and
would like to convert it to long form. I wish to have five variables
in the result:
1) Subj: factor
2) Group: between-subjects factor (2 levels: s / w)
3) Reference: within-subject factor (2 levels: Me / She)
4) F: within-subject factor (2 levels: F1 / F2)
5) J: within-subject factor (2 levels: J1 / J2)
As this is the