search for: num_sims_per_thread

Displaying 1 result from an estimated 1 matches for "num_sims_per_thread".

2012 Mar 22
4
getting multiple plots on a single plot
Hi all, I have the following R script : #!/usr/bin/Rscript out_file = "hybrid.pdf" pdf(out_file, height=8.5, width=11) myvalues_1M <- read.csv("hybrid_sims_1M.csv",head=TRUE,sep=",") plot(myvalues_1M$num_sims_per_thread,myvalues_1M$time_per_sim,xlab="Number of Simulations per Thread",ylab="Time per 1 million Simulations(in milliseconds)",col="red",main="For 1 million simulations") lines(myvalues_1M$num_sims_per_thread,myvalues_1M$time_per_sim,col="red") myvalues_5...