Home | History | Annotate | Download | only in plot

Lines Matching refs:gnuplot

52 		compare=open(gnuplot_output_dir + 'compare.gnuplot','w')
69 shutil.copy(gnuplot_output_dir+'compare.gnuplot',gnuplot_output_dir+compare_raw_filename+".gnuplot")
70 shutil.copy(gnuplot_output_dir+'compare.gnuplot',gnuplot_output_dir+compare_smooth_filename+".gnuplot")
71 shutil.copy(gnuplot_output_dir+'compare.gnuplot',gnuplot_output_dir+compare_trend_filename+".gnuplot")
72 temporary_files.append(gnuplot_output_dir+compare_raw_filename+".gnuplot")
73 temporary_files.append(gnuplot_output_dir+compare_smooth_filename+".gnuplot")
74 temporary_files.append(gnuplot_output_dir+compare_trend_filename+".gnuplot")
77 compare_raw=open(gnuplot_output_dir+compare_raw_filename + ".gnuplot",'a')
79 compare_smooth=open(gnuplot_output_dir+compare_smooth_filename+".gnuplot",'a')
81 compare_trend=open(gnuplot_output_dir+compare_trend_filename+".gnuplot",'a')
113 os.remove(gnuplot_output_dir+"compare.gnuplot")
339 print "Running gnuplot Rendering"
344 os.system("cd %s; for i in *.gnuplot; do gnuplot $i; done" % gnuplot_output_dir)
346 os.system("cd %s; gnuplot mymath" % gnuplot_output_dir)
348 os.system("cd %s; gnuplot mygraph" % gnuplot_output_dir)
357 print "Could not run gnuplot on mymath or mygraph !\n"
367 print '-g or --gnuplot : Render gnuplot traces before exiting'
368 print '-o or --outputfile <file> : The basename for gnuplot traces'
370 print '-d or --outputdir <dir> : The directory where gnuplot shall render files'
371 print '-t or --title <title> : The title of the gnuplot traces'
379 print '-k or --keep : Keep all temporary files from gnuplot\'s output dir'
410 opts, args = getopt.getopt(argv[1:],"ghkbivo:d:t:p:G:m:M:",['bandwidth', 'iops', 'pattern', 'outputfile', 'outputdir', 'title', 'min_time', 'max_time', 'gnuplot', 'Global', 'help', 'verbose','keep'])
444 elif opt in ("-g", "--gnuplot"):