Displaying 1 result from an estimated 1 matches for "mrss".
Did you mean:
mpss
2010 Feb 03
1
graphing help: line runs off top of graph
...**************************************************************
memgraph.R
************************************************************************
args <- commandArgs()
filename = args[6]
m = read.csv(filename, header=TRUE)
m = data.frame(scale(m, center=FALSE, scale = c(60, 1024^2, 1024^2, 1)))
mRSS = m[,c("time", "RSS")]
mVSZ = m[,c("time", "VSZ")]
mPERCENT = m[,c("time", "X.MEM")]
pdf(file=paste(strsplit(filename, "\\.")[[1]][1],".pdf", sep=""))
plot(mRSS, col="red", type='l', xlab=&qu...