blob: 66c5f4e1faca23b6324292a3852c09513dff3572 [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
12set label "Removed\ndummy\nfunction" at "2003-07-30:", 150000
13
Chris Lattner8ab0a012003-08-19 14:27:44 +000014set size .75,.75
Chris Lattnerc75b14e2003-08-18 20:07:54 +000015plot "running_loc.txt" using 1:2 title '', \
16 "running_loc.txt" using 1:2 title "Date vs. Lines of Code" with lines
17
18##------- Plot large Date vs LOC ----
19set size 1.5,1.5
20set output "running_loc_large.png"
21plot "running_loc.txt" using 1:2 title '', \
22 "running_loc.txt" using 1:2 title "Date vs. Lines of Code" with lines
23
24
25# Delete all labels...
26set nolabel
27
28