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