Displaying 4 results from an estimated 4 matches for "miname".
Did you mean:
iname
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&...
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",&qu...
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...
2006 Dec 29
0
Rails AR/Oracle Unit Test: [5808] passed (fixed)
"minam" made AR/Oracle happy again, thank you!
http://dev.rubyonrails.org/changeset/5808
------------------------------------------------------------------------
r5808 | minam | 2006-12-29 11:05:53 -0800 (Fri, 29 Dec 2006) | 2 lines
try to appease the angry Oracle
------------------------------------------------------------------------
U activerecord/test/base_test.rb
U