blob: 207909bd98e2e618429ce3677de93a1dbeac4346 [file] [log] [blame]
Chris Lattnerc75b14e2003-08-18 20:07:54 +00001set terminal png
2
3##------- Plot small Date vs LOC ----
4set output "running_loc.png"
5set xlabel "Date" "TimesRoman,24"
6set ylabel "Lines of Code" "TimesRoman,24"
7set xdata time
8set timefmt "%Y-%m-%d:"
Chris Lattnerfdaac9e2003-08-20 15:33:33 +00009set format x "%b %d, %Y"
Chris Lattnerc75b14e2003-08-18 20:07:54 +000010
11## Various labels for the graph
Chris Lattnereac3cdc2003-08-21 15:55:26 +000012set label "Reoptimizer checkins" at "2003-02-18:", 114000
13set label "Modulo Sched checkin" at "2003-03-28:", 119500
14set label "Reoptimizer checkins" at "2003-06-01:", 134000
15set label "'dummy'\nfunction" at "2003-07-20:", 150000
Chris Lattnerc75b14e2003-08-18 20:07:54 +000016
Chris Lattner8ab0a012003-08-19 14:27:44 +000017set size .75,.75
Chris Lattnerc75b14e2003-08-18 20:07:54 +000018plot "running_loc.txt" using 1:2 title '', \
19 "running_loc.txt" using 1:2 title "Date vs. Lines of Code" with lines
20
21##------- Plot large Date vs LOC ----
22set size 1.5,1.5
23set output "running_loc_large.png"
24plot "running_loc.txt" using 1:2 title '', \
25 "running_loc.txt" using 1:2 title "Date vs. Lines of Code" with lines
26
27
28# Delete all labels...
29set nolabel
30
31