Displaying 1 result from an estimated 1 matches for "blockseqnum".
2007 Apr 21
3
Using R to create pdf's from each file in a directory
...help on "batch processing" an entire directory. My current code is as
follows:
list <- dir("/tmp/data")
for(x in list){
d <- read.table(x, sep="\t", header=TRUE) # read data
pdf("/tmp/graph/x.pdf") # file for graph
plot(d$BlockSeqNum, d$MBs, # Blocks as x, MB/s
as y
type="l", # plot lines, not points
xlab="Blocks", # label x axis
ylab="MB/s", # label...