Displaying 3 results from an estimated 3 matches for "plot_mi_tim".
Did you mean:
plot_mi_time
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&qu...
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","...
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"))
}...