{"commit":"a25dd2f69496c85f2514498bf714697c9a9c2ce6","old_file":"EVSL_1.0\/TESTS\/Landos\/testerG.gnuplot","new_file":"EVSL_1.0\/TESTS\/Landos\/testerG.gnuplot","old_contents":"set term post enh \t\t # enhanced PostScript, essentially PostScript\n \t\t \t\t # with bounding boxes\nset out 'testerG.eps' # output file\n\nset title \"LanDos Test -- comparison with exact histogram\"\nset xlabel '{\/Symbol l}'\nset ylabel 'Spectral Density (DOS)'\nset xrange[0:.05]\nset yrange[0:300]\nset parametric\n\nplot 'OUT\/myydosG.txt' lt rgb \"red\" with line title 'Lanczos DOS ~{\/Symbol f}{.4\\~}({\/Symbol l})', \\\n 'OUT\/ExydosG.txt' with line title 'Exact Histogram {\/Symbol f}({\/Symbol l})', \\\n","new_contents":"set term post enh \t\t # enhanced PostScript, essentially PostScript\n \t\t \t\t # with bounding boxes\nset out 'testerG.eps' # output file\n\nset title \"LanDos Test -- comparison with exact histogram\"\nset xlabel '{\/Symbol l}'\nset ylabel 'Spectral Density (DOS)'\nset parametric\n\nplot 'OUT\/myydosG.txt' lt rgb \"red\" with line title 'Lanczos DOS ~{\/Symbol f}{.4\\~}({\/Symbol l})', \\\n 'OUT\/ExydosG.txt' with line title 'Exact Histogram {\/Symbol f}({\/Symbol l})', \\\n","subject":"Allow gnuplot to set axis in Landos tests","message":"Allow gnuplot to set axis in Landos tests\n","lang":"Gnuplot","license":"lgpl-2.1","repos":"eigs\/EVSL,eigs\/EVSL,eigs\/EVSL"} {"commit":"e2d9b0afe334933e756670bfe1d37e3cdcd2f460","old_file":"rust-showcase\/plots\/brightness.gp","new_file":"rust-showcase\/plots\/brightness.gp","old_contents":"set datafile separator ','\nset key top left\nset terminal pngcairo size 750,560\nset output \"..\/assets\/brightness.png\"\n\nplot [2905:2985] \"..\/assets\/brightness.csv\" using 1:2 title \"Background\", \"..\/assets\/brightness.csv\" using 1:3 title \"No background\"","new_contents":"set datafile separator ','\nset key top left\nset terminal pngcairo size 750,560\n\nbg_color = \"dark-violet\"\nnobg_color = \"forest-green\"\n\nset output \"..\/assets\/brightness-both.png\"\nplot [2905:2985] \"..\/assets\/brightness.csv\" using 1:2 title \"Background\" linecolor bg_color, \"..\/assets\/brightness.csv\" using 1:3 title \"No background\" linecolor nobg_color \n\nset output \"..\/assets\/brightness-background.png\"\nplot [2905:2985] \"..\/assets\/brightness.csv\" using 1:2 title \"Background\" linecolor bg_color \n\nset output \"..\/assets\/brightness-nobackground.png\"\nplot [2905:2985] \"..\/assets\/brightness.csv\" using 1:3 title \"No background\" linecolor nobg_color \n\n\n","subject":"Create multiple plots in one script","message":"Create multiple plots in one script\n","lang":"Gnuplot","license":"mit","repos":"fifth-postulate\/finding-the-planets,fifth-postulate\/finding-the-planets,fifth-postulate\/finding-the-planets"} {"commit":"f1e7b50f16196861a3af3ba7380a120eb0039c1a","old_file":"analysis\/graph.plt","new_file":"analysis\/graph.plt","old_contents":"#Expects data to be in data.csv\n# Unfortunately, we can't read from the pipe becuase we need to read from the file twice :-(\nset datafile separator \",\"\n\n#0 is a special column that starts from 0 and increments by 1 for each row.\nplot 'data.csv' using 0:3 title \"Markov Difficulties\" with boxes, \\\n'data.csv' using 0:2 title \"QQWing Difficulties\" axes x1y2 with lines","new_contents":"#Expects data to be in data.csv\n# Unfortunately, we can't read from the pipe becuase we need to read from the file twice :-(\nset datafile separator \",\"\n\nset logscale y\n\n#0 is a special column that starts from 0 and increments by 1 for each row.\nplot 'data.csv' using 0:3title \"Markov Difficulties\" with boxes, \\\n'data.csv' using 0:2 title \"QQWing Difficulties\" axes x1y2 with lines","subject":"Use a logscale for the markov difficulties, to correct for their natural exponential nature.","message":"Use a logscale for the markov difficulties, to correct for their natural exponential nature.\n","lang":"Gnuplot","license":"apache-2.0","repos":"jkomoros\/sudoku,jkomoros\/sudoku,jkomoros\/sudoku"} {"commit":"4ea03b4e12f9af083b8fc20f1b77f1b23989df31","old_file":"NightlyTest.gnuplot","new_file":"NightlyTest.gnuplot","old_contents":"set terminal png\n\n##------- Plot small Date vs LOC ----\nset output \"running_loc.png\"\nset xlabel \"Date\" \"TimesRoman,24\"\nset ylabel \"Lines of Code\" \"TimesRoman,24\"\nset xdata time\nset timefmt \"%Y-%m-%d:\"\nset format x \"%b %m, %Y\"\n\n## Various labels for the graph\nset label \"Removed\\ndummy\\nfunction\" at \"2003-07-30:\", 150000\n\nset size .75,.75\nplot \"running_loc.txt\" using 1:2 title '', \\\n \"running_loc.txt\" using 1:2 title \"Date vs. Lines of Code\" with lines\n\n##------- Plot large Date vs LOC ----\nset size 1.5,1.5\nset output \"running_loc_large.png\"\nplot \"running_loc.txt\" using 1:2 title '', \\\n \"running_loc.txt\" using 1:2 title \"Date vs. Lines of Code\" with lines\n\n\n# Delete all labels...\nset nolabel\n\n\n","new_contents":"set terminal png\n\n##------- Plot small Date vs LOC ----\nset output \"running_loc.png\"\nset xlabel \"Date\" \"TimesRoman,24\"\nset ylabel \"Lines of Code\" \"TimesRoman,24\"\nset xdata time\nset timefmt \"%Y-%m-%d:\"\nset format x \"%b %d, %Y\"\n\n## Various labels for the graph\nset label \"Removed\\ndummy\\nfunction\" at \"2003-07-30:\", 150000\n\nset size .75,.75\nplot \"running_loc.txt\" using 1:2 title '', \\\n \"running_loc.txt\" using 1:2 title \"Date vs. Lines of Code\" with lines\n\n##------- Plot large Date vs LOC ----\nset size 1.5,1.5\nset output \"running_loc_large.png\"\nplot \"running_loc.txt\" using 1:2 title '', \\\n \"running_loc.txt\" using 1:2 title \"Date vs. Lines of Code\" with lines\n\n\n# Delete all labels...\nset nolabel\n\n\n","subject":"Fix bug where we printed the month number instead of the day number *blush*","message":"Fix bug where we printed the month number instead of the day number *blush*\n\n\ngit-svn-id: a4a6f32337ebd29ad4763b423022f00f68d1c7b7@7980 91177308-0d34-0410-b5e6-96231b3b80d8\n","lang":"Gnuplot","license":"bsd-3-clause","repos":"lodyagin\/bare_cxx,lodyagin\/bare_cxx,lodyagin\/bare_cxx,lodyagin\/bare_cxx,lodyagin\/bare_cxx"} {"commit":"4a7815b889fd3cf11cc423871571f205914310b1","old_file":"EVSL_1.0\/TESTS\/Landos\/testerG.gnuplot","new_file":"EVSL_1.0\/TESTS\/Landos\/testerG.gnuplot","old_contents":"set term post enh \t\t # enhanced PostScript, essentially PostScript\n \t\t \t\t # with bounding boxes\nset out 'testerG.eps' # output file\n\nset title \"LanDos Test -- comparison with exact histogram\"\nset xlabel '{\/Symbol l}'\nset ylabel 'Spectral Density (DOS)'\nset parametric\n\nplot 'OUT\/myydosG.txt' lt rgb \"red\" with line title 'Lanczos DOS ~{\/Symbol f}{.4\\~}({\/Symbol l})', \\\n 'OUT\/ExydosG.txt' with line title 'Exact Histogram {\/Symbol f}({\/Symbol l})', \\\n","new_contents":"set term post enhanced color landscape \t\t # enhanced PostScript, essentially PostScript\n \t\t \t\t # with bounding boxes\nset out 'testerG.eps' # output file\n\nset title \"LanDos Test -- comparison with exact histogram\"\nset xlabel '{\/Symbol l}'\nset ylabel 'Spectral Density (DOS)'\nset parametric\n\nplot 'OUT\/myydosG.txt' lt rgb \"red\" with line title 'Lanczos DOS ~{\/Symbol f}{.4\\~}({\/Symbol l})', \\\n 'OUT\/ExydosG.txt' with line title 'Exact Histogram {\/Symbol f}({\/Symbol l})', \\\n","subject":"Improve gnuplot for the general problem","message":"Improve gnuplot for the general problem\n","lang":"Gnuplot","license":"lgpl-2.1","repos":"eigs\/EVSL,eigs\/EVSL,eigs\/EVSL"} {"commit":"d230fb302716123c7c98be487820814d9bedcb4f","old_file":"averages.gnuplot","new_file":"averages.gnuplot","old_contents":"set terminal 'pngcairo' size 1920, 1080\nset output 'averages.png'\nset datafile separator ','\nset title 'Average response time versus concurrency level'\nset xlabel 'Concurrency level (number of simultaneous users)'\nset ylabel 'Average response time (ms.)'\nset style line 1 lc rgb '#0060ad' lt 1 lw 2 pt 7 pi -1 ps 1.5\nset pointintervalbox 3\nset grid\nset xrange [0:160]\nset yrange [0:5000]\nset xtics (0,10,20,30,40,50,60,70,80,90,100,110,120,130,140,150,160)\nset ytics 500\nplot \"averages.csv\" using 2:1 with linespoints ls 1 title 'Response time'\n","new_contents":"set terminal 'pngcairo' size 1920, 1080\nset output 'averages.png'\nset datafile separator ','\nset title 'Average response time versus concurrency level'\nset xlabel 'Concurrency level (number of simultaneous users)'\nset ylabel 'Average response time (ms.)'\nset style line 1 lc rgb '#0060ad' lt 1 lw 2 pt 7 pi -1 ps 1.5\nset pointintervalbox 3\nset grid\nset xrange [0:160]\nset yrange [0:5000]\nset xtics (0,10,20,30,40,50,60,70,80,90,100,110,120,130,140,150,160)\nset ytics 500\nset y2range [0:30000]\nset y2label 'Number of HTTP requests per status'\nset arrow from 60,graph(0,0) to 60,graph(1,1) nohead\nset arrow from 120,graph(0,0) to 120,graph(1,1) nohead\nplot \"averages.csv\" using 2:1 with linespoints ls 1 title 'Response time'\n","subject":"Mark graph with lines at 60 and 120 concurrent.","message":"[FEATURE] Mark graph with lines at 60 and 120 concurrent.\n","lang":"Gnuplot","license":"bsd-3-clause","repos":"bvdwiel\/loadtest,bvdwiel\/loadtest"} {"commit":"7e634a57c62d380cc5f5e28264a101ca6dd4b8ba","old_file":"test\/scripts\/runtime.gp","new_file":"test\/scripts\/runtime.gp","old_contents":"reset\nset ylabel 'time(sec)'\nset style fill solid\nset title 'perfomance comparison'\nset term png enhanced font 'Verdana,10'\nset output 'runtime.png'\n\nplot [:][:80]'output.txt' using 2:xtic(1) with histogram title 'original', \\\n'' using ($0-0.2):($2+4):2 with labels title ' ', \\\n'' using 3:xtic(1) with histogram title 'optimized' , \\\n'' using ($0):($3+1):3 with labels title ' ', \\\n'' using 4:xtic(1) with histogram title 'B+ tree' , \\\n'' using ($0+0.35):($4+3):4 with labels title ' ', \\\n'' using 5:xtic(1) with histogram title 'B+ tree with bulk loading' , \\\n'' using ($0+0.45):($5+5):5 with labels title ' ', \\\n","new_contents":"reset\nset ylabel 'time(sec)'\nset style fill solid\nset title 'perfomance comparison'\nset term png enhanced font 'Verdana,10'\nset output 'runtime1.png'\n\nplot [:][:0.0005]'output.txt' using 2:xtic(1) with histogram title 'original', \\\n'' using 3:xtic(1) with histogram title 'optimized' , \\\n'' using 4:xtic(1) with histogram title 'B+ tree' , \\\n'' using 5:xtic(1) with histogram title 'B+ tree bulk' , \\\n'' using ($0+0.1):(0.0001):2 with labels title ' ' textcolor lt 1, \\\n'' using ($0+0.1):(0.00012):3 with labels title ' ' textcolor lt 2, \\\n'' using ($0+0.1):(0.00014):4 with labels title ' ' textcolor lt 3, \\\n'' using ($0+0.1):(0.00016):5 with labels title ' ' textcolor lt 4, \\\n","subject":"Modify gnuplot script, rearrange scales and text color","message":"Modify gnuplot script, rearrange scales and text color\n","lang":"Gnuplot","license":"mit","repos":"sysprog-Concurrent-BTree\/bplus-tree,sysprog-Concurrent-BTree\/bplus-tree,sysprog-Concurrent-BTree\/bplus-tree"} {"commit":"fdaac9e23e71cc9713536a94bbd1ddd7a989e91d","old_file":"utils\/NightlyTest.gnuplot","new_file":"utils\/NightlyTest.gnuplot","old_contents":"set terminal png\n\n##------- Plot small Date vs LOC ----\nset output \"running_loc.png\"\nset xlabel \"Date\" \"TimesRoman,24\"\nset ylabel \"Lines of Code\" \"TimesRoman,24\"\nset xdata time\nset timefmt \"%Y-%m-%d:\"\nset format x \"%b %m, %Y\"\n\n## Various labels for the graph\nset label \"Removed\\ndummy\\nfunction\" at \"2003-07-30:\", 150000\n\nset size .75,.75\nplot \"running_loc.txt\" using 1:2 title '', \\\n \"running_loc.txt\" using 1:2 title \"Date vs. Lines of Code\" with lines\n\n##------- Plot large Date vs LOC ----\nset size 1.5,1.5\nset output \"running_loc_large.png\"\nplot \"running_loc.txt\" using 1:2 title '', \\\n \"running_loc.txt\" using 1:2 title \"Date vs. Lines of Code\" with lines\n\n\n# Delete all labels...\nset nolabel\n\n\n","new_contents":"set terminal png\n\n##------- Plot small Date vs LOC ----\nset output \"running_loc.png\"\nset xlabel \"Date\" \"TimesRoman,24\"\nset ylabel \"Lines of Code\" \"TimesRoman,24\"\nset xdata time\nset timefmt \"%Y-%m-%d:\"\nset format x \"%b %d, %Y\"\n\n## Various labels for the graph\nset label \"Removed\\ndummy\\nfunction\" at \"2003-07-30:\", 150000\n\nset size .75,.75\nplot \"running_loc.txt\" using 1:2 title '', \\\n \"running_loc.txt\" using 1:2 title \"Date vs. Lines of Code\" with lines\n\n##------- Plot large Date vs LOC ----\nset size 1.5,1.5\nset output \"running_loc_large.png\"\nplot \"running_loc.txt\" using 1:2 title '', \\\n \"running_loc.txt\" using 1:2 title \"Date vs. Lines of Code\" with lines\n\n\n# Delete all labels...\nset nolabel\n\n\n","subject":"Fix bug where we printed the month number instead of the day number *blush*","message":"Fix bug where we printed the month number instead of the day number *blush*\n\n\ngit-svn-id: 0ff597fd157e6f4fc38580e8d64ab130330d2411@7980 91177308-0d34-0410-b5e6-96231b3b80d8\n","lang":"Gnuplot","license":"bsd-2-clause","repos":"dslab-epfl\/asap,GPUOpen-Drivers\/llvm,dslab-epfl\/asap,apple\/swift-llvm,llvm-mirror\/llvm,llvm-mirror\/llvm,llvm-mirror\/llvm,dslab-epfl\/asap,apple\/swift-llvm,chubbymaggie\/asap,apple\/swift-llvm,GPUOpen-Drivers\/llvm,dslab-epfl\/asap,llvm-mirror\/llvm,llvm-mirror\/llvm,GPUOpen-Drivers\/llvm,dslab-epfl\/asap,apple\/swift-llvm,llvm-mirror\/llvm,GPUOpen-Drivers\/llvm,dslab-epfl\/asap,GPUOpen-Drivers\/llvm,GPUOpen-Drivers\/llvm,llvm-mirror\/llvm,apple\/swift-llvm,chubbymaggie\/asap,llvm-mirror\/llvm,llvm-mirror\/llvm,chubbymaggie\/asap,apple\/swift-llvm,chubbymaggie\/asap,GPUOpen-Drivers\/llvm,apple\/swift-llvm,chubbymaggie\/asap,chubbymaggie\/asap,apple\/swift-llvm,GPUOpen-Drivers\/llvm,dslab-epfl\/asap"} {"commit":"9e917a7c9e5f26cade48da4aa161b2c64992a4de","old_file":"tests\/http_request_benchmark\/plot_results.gnu","new_file":"tests\/http_request_benchmark\/plot_results.gnu","old_contents":"#! \/usr\/bin\/env gnuplot\n\nset terminal svg\n\nset style line 1 lc rgb '#dd181f' lt 1 lw 0.1 pt 5 ps 0.2 # --- red\nset style line 2 lc rgb '#0060ad' lt 1 lw 0.1 pt 7 ps 0.2 # --- blue\n\nset xlabel 'Index of HTTP request'\nset ylabel 'Time required for completion in nanoseconds'\n\nset yrange [0:300000]\n\ncd 'results'\nresults = system('ls *.dat')\ndo for [result in results] {\n\tset output sprintf('%s.svg', result[:strlen(result)-4])\n\tplot result index 0 t 'AsyncSocket' with linespoints ls 1, \\\n\t result index 1 t 'AsyncTCPConnection' with linespoints ls 2\n}","new_contents":"#! \/usr\/bin\/env gnuplot\n\nset terminal svg\n\nset style line 1 lc rgb '#dd181f' lt 1 lw 0.1 pt 5 ps 0.2 # --- red\nset style line 2 lc rgb '#0060ad' lt 1 lw 0.1 pt 7 ps 0.2 # --- blue\n\nset xlabel 'Index of HTTP request'\nset ylabel 'Time required for completion in nanoseconds'\n\nset yrange [0:300000]\n\ncd 'results'\nresults = system('ls *\/*.dat')\ndo for [result in results] {\n\tset output sprintf('%s.svg', result[:strlen(result)-4])\n\tplot result index 0 t 'AsyncSocket' with linespoints ls 1, \\\n\t result index 1 t 'AsyncTCPConnection' with linespoints ls 2\n}\n","subject":"Update gnuplot file for platform folders","message":"Update gnuplot file for platform folders\n","lang":"Gnuplot","license":"mit","repos":"etcimon\/libasync"} {"commit":"5070fde57f5375a96e363480ce1267ff3d2e21e6","old_file":"figures\/gnuplot\/line.gp","new_file":"figures\/gnuplot\/line.gp","old_contents":"set output \"line.png\"\nload \"settings.gp\"\n\nf(x) = 4.0*x + 42\nx1 = -17\nx2 = -16\nplot \\\n f(x) axes x1y1 not with lines linestyle 102, \\\n '+' using ($0 == 0 ? x1 : NaN):(f(x1)):(sprintf('P1')) \\\n with labels offset char -1.5,1 left textcolor rgb 'blue' \\\n point linestyle 1 notitle, \\\n '+' using ($0 == 0 ? x2 : NaN):(f(x2)):(sprintf('P2')) \\\n with labels offset char -1.5,1 left textcolor rgb 'blue' \\\n point linestyle 1 notitle\n","new_contents":"set output \"line.png\"\nload \"settings.gp\"\n\nset xrange [-20:-14]\nf(x) = 4.0*x + 42\nx1 = -17\nx2 = -16\nplot \\\n f(x) axes x1y1 not with lines linestyle 102, \\\n '+' using ($0 == 0 ? x1 : NaN):(f(x1)):(sprintf('P1')) \\\n with labels offset char -1.5,1 left textcolor rgb 'blue' \\\n point linestyle 1 notitle, \\\n '+' using ($0 == 0 ? x2 : NaN):(f(x2)):(sprintf('P2')) \\\n with labels offset char -1.5,1 left textcolor rgb 'blue' \\\n point linestyle 1 notitle\n","subject":"Add xrange back where it belongs.","message":"Add xrange back where it belongs.\n","lang":"Gnuplot","license":"mit","repos":"eigenholser\/TALK-Shamir_Secret_Sharing,eigenholser\/TALK-Shamir_Secret_Sharing,eigenholser\/TALK-Shamir_Secret_Sharing"} {"commit":"2c4890533c3fd2a8e2606fce541e6784d0af5020","old_file":"profile\/plot\/lexer\/big_xml.gnuplot","new_file":"profile\/plot\/lexer\/big_xml.gnuplot","old_contents":"#!\/usr\/bin\/env gnuplot\n\nset title \"Lexing 10MB of XML\"\n\nset xlabel \"Sample\"\nset ylabel \"Memory (MB)\"\n\nset yrange [0:*]\n\nset term qt persist\nset grid\n\nset style line 1 lc rgb \"#0060ad\" lt 1 lw 2 pt 7 ps 1\n\nplot \"profile\/samples\/lexer\/big_xml.txt\" \\\n using 0:($1 \/ 1024 ** 2) \\\n with linespoints ls 1 \\\n title \"Memory\"\n\n# vim: set ft=gnuplot:\n","new_contents":"#!\/usr\/bin\/env gnuplot\n\nset title \"Lexing 10MB of XML\"\n\nset xlabel \"Sample\"\nset ylabel \"Memory (MB)\"\n\nset yrange [0:*]\n\nset term qt persist size 900,600\nset grid\n\nset style line 1 lc rgb \"#0060ad\" lt 1 lw 2 pt 7 ps 1\n\nplot \"profile\/samples\/lexer\/big_xml.txt\" \\\n using 0:($1 \/ 1024 ** 2) \\\n with linespoints ls 1 \\\n title \"Memory\"\n\n# vim: set ft=gnuplot:\n","subject":"Set initial size for the lexer graph.","message":"Set initial size for the lexer graph.\n","lang":"Gnuplot","license":"mpl-2.0","repos":"dfockler\/oga,dfockler\/oga,ttasanen\/oga,dfockler\/oga,YorickPeterse\/oga,YorickPeterse\/oga,dfockler\/oga,jeffreybaird\/oga,ttasanen\/oga,jeffreybaird\/oga,ttasanen\/oga,jeffreybaird\/oga,jeffreybaird\/oga,altmetric\/oga,ttasanen\/oga,altmetric\/oga,altmetric\/oga,jeffreybaird\/oga,YorickPeterse\/oga,ttasanen\/oga,altmetric\/oga,altmetric\/oga,YorickPeterse\/oga,YorickPeterse\/oga,dfockler\/oga"} {"commit":"c57f69776103121107ad70d86a7b0efbc2553daa","old_file":"lib\/math\/ancillary\/ulp.gp","new_file":"lib\/math\/ancillary\/ulp.gp","old_contents":"","new_contents":"\/*\n I always end up need this for debugging\n *\/\n\n{ ulp32(a) = my(aa, q);\n aa = abs(a);\n if(aa < 2^(-150),return(2^(-126 - 23)),);\n q = floor(log(aa)\/log(2));\n if(q < -126,q=-126,);\n return(2^(q-23));\n}\n\n{ ulp64(a) = my(aa, q);\n aa = abs(a);\n if(aa < 2^(-2000),return(2^(-1022 - 52)),);\n q = floor(log(aa)\/log(2));\n if(q < -1022,q=-1022,);\n return(2^(q-52));\n}\n\n{ err32(x, y) =\n return(abs(x-y)\/ulp32(x));\n}\n\n{ err64(x, y) =\n return(abs(x-y)\/ulp64(x));\n}\n","subject":"Add macros for relative error to lib\/math\/ancillary.","message":"Add macros for relative error to lib\/math\/ancillary.\n","lang":"Gnuplot","license":"mit","repos":"oridb\/mc,oridb\/mc,oridb\/mc,oridb\/mc"} {"commit":"bc2505cd9bd6250717406f13572fffb8d5c7a3b4","old_file":"Gnuplot\/epslatex.plt","new_file":"Gnuplot\/epslatex.plt","old_contents":"","new_contents":"#!\/usr\/bin\/env gnuplot\n\nset encoding utf8\nset terminal epslatex\nset output '<+filebase+>.eps'\nset output '<+FILEBASE+>.tex'\n\n<+CURSOR+>\n","subject":"Add a template of gnuplot","message":"Add a template of gnuplot\n","lang":"Gnuplot","license":"mit","repos":"koturn\/kotemplate,koturn\/kotemplate,koturn\/kotemplate,koturn\/kotemplate,koturn\/kotemplate,koturn\/kotemplate,koturn\/kotemplate,koturn\/kotemplate,koturn\/kotemplate,koturn\/kotemplate,koturn\/kotemplate,koturn\/kotemplate,koturn\/kotemplate"} {"commit":"0011afb8a6b923e428457c7fbb6d43310df45ede","old_file":"benchmarks\/Threaded.gnuplot","new_file":"benchmarks\/Threaded.gnuplot","old_contents":"","new_contents":"set xrange [0:100]\nplot \"JustPingC.data\" u 2:(1.\/100000.) smooth cumulative title \"C\", \\\n \"JustPingHaskellNT.data\" u 2:(1.\/100000.) smooth cumulative title \"Haskell\", \\\n \"JustPingHaskell.data\" u 2:(1.\/100000.) smooth cumulative title \"Haskell -threaded\"\nset terminal postscript color\nset output \"Threaded.ps\"\nplot \"JustPingC.data\" u 2:(1.\/100000.) smooth cumulative title \"C\", \\\n \"JustPingHaskellNT.data\" u 2:(1.\/100000.) smooth cumulative title \"Haskell\", \\\n \"JustPingHaskell.data\" u 2:(1.\/100000.) smooth cumulative title \"Haskell -threaded\"\n","subject":"Add script to generate the -threaded CDF","message":"Add script to generate the -threaded CDF\n","lang":"Gnuplot","license":"bsd-3-clause","repos":"hackern\/network-transport-tcp,aycanirican\/network-transport-tcp,tweag\/network-transport-tcp,haskell-distributed\/network-transport-tcp"} {"commit":"0b34927b26a7c57096601e94266de2672fd5afde","old_file":"PLOT_DENSITY.plt","new_file":"PLOT_DENSITY.plt","old_contents":"","new_contents":"#!\/usr\/bin\/gnuplot -c\n\nset terminal png font arial 14 size 800,600\n\nset border 3\nunset title\nunset key\nunset xtics\nunset ytics\nset grid\n\nset xrange [0:]\nset yrange [0:]\n\nset cbrange [ 0.00000 : ]\n\nset output ARG2\nplot ARG1 matrix with image\n","subject":"Add gnuplot script for densitySlice output","message":"Add gnuplot script for densitySlice output\n","lang":"Gnuplot","license":"bsd-2-clause","repos":"sgshulman\/DGEM,sgshulman\/DGEM"} {"commit":"8230b2645eaec8c6df6ab87c22d380cc2fcdd9aa","old_file":"bin\/neuron-fit.gp","new_file":"bin\/neuron-fit.gp","old_contents":"","new_contents":"set terminal pngcairo mono font '\/usr\/share\/fonts\/X11\/Type1\/lmbx10.pfb'\nset termoption dash\nset output outfile\nset key inside left top box linetype -1 linewidth 1.000\nset samples 50\nset title \"40-bit one max, 120 pop, roulette, fitness, full replacement\"\nset xlabel \"Generation\"\nset ylabel \"Fitness\"\nS = 1\nplot infile u ($0):1:2 t \"Avg + std.dev\" w yerrorlines lt 1 lc rgb 'blue',\\\n infile u ($0):3 t \"Max\" w l lt 1 lc rgb 'web-green', \\\n infile u ($0):4 t \"Min\" w l lt 1 lc rgb 'dark-red'\n","subject":"Add in neuron fitness printer.","message":"Add in neuron fitness printer.\n","lang":"Gnuplot","license":"epl-1.0","repos":"hyPiRion\/genetica,hyPiRion\/genetica"} {"commit":"d90bcfae8a3b92275aa2fe64732f64fde50db32a","old_file":"plots\/scatter_cluster\/scatter_cluster.gnu","new_file":"plots\/scatter_cluster\/scatter_cluster.gnu","old_contents":"","new_contents":"# circle_inout.inp\n#\n# Draw 500 points, some inside, and some outside, the unit circle.\n#\n# Choose the output device.\n#\nset term png medium\n#\n# Name the output file.\n#\nset output \"circle_inout.png\"\n#\n# Set the plot title.\n#\nset title \"Random Points in\/out of Circle\"\n#\n# Get grid lines.\n#\nset grid\n#\n# Set axis labels.\n#\nset xlabel \"<--- X --->\"\nset ylabel \"<--- Y --->\"\n#\n# The following command forces X and Y axes to appear the same size.\n#\nset size ratio 1\n#\n# Draw a unit circle, and display it BEHIND everything else.\n#\nset object circle center ( 0, 0 ) radius 1.0 behind\n#\n# Timestamp the plot.\n#\nset timestamp\n#\n# Plot the data using X and Y ranges [0,1],\n# using the data in 'circle_in.txt',\n# marking the data with points only (a scatter plot)\n# using line type 3 (blue)\n# and point type 4 (open square)\n# and \n# using the data in 'circle_out.txt',\n# marking the data with points only (a scatter plot)\n# using line type 1 (red)\n# and point type 3 (star)\n#\nplot [0:1] [0:1] \"circle_in.txt\" with points lt 3 pt 4, \"circle_out.txt\" with points lt 1 pt 3\n#\n# Terminate.\n#\nquit\n","subject":"Fix a scatter plot script","message":"Fix a scatter plot script\n","lang":"Gnuplot","license":"apache-2.0","repos":"cyliustack\/sofa,cyliustack\/sofa,cyliustack\/sofa,cyliustack\/sofa,cyliustack\/sofa"}