|
From: Thomas S. <t.s...@fz...> - 2012-04-05 16:04:11
|
you should add a date to your data, to indicate that "17:21:03" is in day "1"
and
"16:27:07" is in day "2".
fretagi wrote:
>
> I all, I am a newbie on using gnuplot, so please can you help?
> I have the folloing data:
> 17:21:03 0 2 179 24485216 2565408 5266 1934 41436 764 759 0 302 1 1 12 5
> 6674 108022 10495 4 7 89
> 18:38:03 0 0 169 25490984 2808200 1536 1364 8433 617 639 0 253 1 1 4 2
> 4381 65136 6368 2 5 93
> 19:55:03 0 6 169 22930408 2538720 23022 1563 196468 588 564 0 272 2 1 5 38
> 7251 115762 10238 5 17 77
> 21:12:03 0 0 169 25913432 2770456 1365 1286 7686 478 458 0 0 1 1 1 2 5036
> 51974 7103 3 5 92
> 22:29:03 0 0 169 25498768 2834792 3946 1587 55581 418 396 0 0 1 1 0 2 5168
> 51888 7844 3 5 92
> 23:46:03 0 1 169 24620912 2001440 3209 1393 25857 226 213 0 0 1 1 0 3 7938
> 52121 13671 3 5 92
> 01:03:04 0 8 169 24000528 1401912 10192 1759 100265 510 834 0 882 3 1 10 4
> 8666 51687 13080 3 7 90
> 02:20:04 0 1 165 22852336 1575536 2224 1766 15091 351 534 0 424 2 1 30 4
> 11709 140773 20584 4 6 89
> 03:37:06 0 1 165 21649848 1978192 5062 2134 41438 3073 2825 0 3056 2 1 114
> 4 8095 199343 11920 4 11 85
> 04:54:06 0 14 165 19478160 2630672 21702 3476 194264 1203 1264 0 600 3 1
> 47 4 12144 307890 17691 10 25 65
> 06:11:06 0 6 165 21413352 2397680 16119 3055 138078 938 950 0 353 2 1 18 3
> 11032 289726 16550 9 18 73
> 07:28:07 0 1 165 22386816 2319328 2876 2488 18548 1015 1027 0 241 1 1 23 4
> 8784 222215 13808 6 9 86
> 08:45:07 0 17 165 21182680 2162336 24534 2148 230441 1090 1110 0 1062 3 1
> 17 5 10112 152869 14755 7 19 74
> 10:02:07 0 11 165 18735736 2867392 25203 2947 212215 1376 1339 0 1060 3 1
> 46 5 9646 149414 14330 6 19 75
> 11:19:07 0 6 164 18617160 2954016 9633 3180 79435 632 611 0 0 2 1 13 5
> 9614 194037 14509 5 15 81
> 12:36:07 0 2 160 27739024 2316600 6128 523 53831 120 127 0 5 1 1 1 0 8690
> 23440 12244 2 2 96
> 13:53:07 0 0 160 25714664 2651016 974 1206 3448 535 494 0 0 1 1 3 2 9345
> 79016 16147 2 4 94
> 15:10:08 0 1 160 18404232 3375856 2751 3204 11802 1595 1589 0 0 1 1 10 6
> 10077 177106 15978 5 13 82
> 16:27:07 0 15 160 16853488 2675864 25492 2736 221319 1151 1036 0 0 2 1 6 4
> 11727 163363 17337 8 27 65
>
>
> And I have the following file to produce a graph:
> set terminal png
> set output "mont_mar12.png"
> set grid
> set multiplot
> set xdata time
> set timefmt "%H:%M:%S"
> #set xrange ["09:18:08":"18:48:16"]
> set xrange ["17:21:03":"16:27:07"]
> set xtics format "%H:%M"
> #set xtics 1800
> set xtics ("17:21:03", "21:12:03", "01:03:04", "04:54:06", "08:45:04",
> "12:36:07", "16:27:07")
> set size 0.5, 0.5
> set origin 0, 0
> plot "moneta_mar12_vm" u 1:2 t 'process in run que' w linespoints
> set size 0.5, 0.5
> set origin 0.5, 0
> plot "moneta_mar12_vm" u 1:3 t 'blo. proc waiting f resou' w linespoints
> set size 0.5, 0.5
> set origin 0, 0.5
> plot "moneta_mar12_vm" u 1:13 t 'scan rate' w linespoints
> unset multiplot
>
>
> Please can you help to get a graph from it?
>
> regards
>
> FR
>
--
View this message in context: http://old.nabble.com/trouble-with-x-axis-%28time-series%29-tp33553140p33573336.html
Sent from the Gnuplot - User mailing list archive at Nabble.com.
|