mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-04 17:58:22 +00:00
8ab0a0119d
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7968 91177308-0d34-0410-b5e6-96231b3b80d8
29 lines
709 B
Gnuplot
29 lines
709 B
Gnuplot
set terminal png
|
|
|
|
##------- Plot small Date vs LOC ----
|
|
set output "running_loc.png"
|
|
set xlabel "Date" "TimesRoman,24"
|
|
set ylabel "Lines of Code" "TimesRoman,24"
|
|
set xdata time
|
|
set timefmt "%Y-%m-%d:"
|
|
set format x "%b %m, %Y"
|
|
|
|
## Various labels for the graph
|
|
set label "Removed\ndummy\nfunction" at "2003-07-30:", 150000
|
|
|
|
set size .75,.75
|
|
plot "running_loc.txt" using 1:2 title '', \
|
|
"running_loc.txt" using 1:2 title "Date vs. Lines of Code" with lines
|
|
|
|
##------- Plot large Date vs LOC ----
|
|
set size 1.5,1.5
|
|
set output "running_loc_large.png"
|
|
plot "running_loc.txt" using 1:2 title '', \
|
|
"running_loc.txt" using 1:2 title "Date vs. Lines of Code" with lines
|
|
|
|
|
|
# Delete all labels...
|
|
set nolabel
|
|
|
|
|