set terminal png color set output 'status.png' set key top left set xlabel 'time [unix s]' set ylabel 'ratio of translated paragraphs [%]' set yrange [0:100] plot \ 'status-apps.dat' using 1:(100*$2/$3) title 'HTML 5' with lines, \ 'status-apps.dat' using 1:(100*$4/$5) title 'HTML 5 (Cover)' with lines, \ 'status-apps.dat' using 1:(100*$6/$7) title 'HTML 5 (Introduction)' with lines, \ 'status-apps.dat' using 1:(100*$8/$9) title 'HTML 5 (Infrastructure)' with lines, \ 'status-apps.dat' using 1:(100*$10/$11) title 'HTML 5 (Document)' with lines, \ 'status-apps.dat' using 1:(100*$12/$13) title 'HTML 5 (Element)' with lines, \ 'status-apps.dat' using 1:(100*$14/$15) title 'HTML 5 (Browsers)' with lines, \ 'status-apps.dat' using 1:(100*$16/$17) title 'HTML 5 (Interaction)' with lines, \ 'status-apps.dat' using 1:(100*$18/$19) title 'HTML 5 (Communication)' with lines, \ 'status-apps.dat' using 1:(100*$20/$21) title 'HTML 5 (Syntax)' with lines, \ 'status-apps.dat' using 1:(100*$22/$23) title 'HTML 5 (Rendering)' with lines, \ 'status-apps.dat' using 1:(100*$24/$25) title 'HTML 5 (Appendices)' with lines, \ 'status-workers.dat' using 1:(100*$2/$3) title 'Web Workers' with lines ## Author: Wakaba . ## License: Public Domain. ## $Date: 2008/10/27 05:00:33 $