All pastes #2071443 Raw Edit

Mine

public text v1 · immutable
#2071443 ·published 2011-05-29 02:43 UTC
rendered paste body
# CONTEXT:
# I need to plot date from lines like
#
# May 28 2011 09:16:09 PM 0.38	99.527	45.155	13.1001	19.7676
#
# Where everything before the PM is, obviously, date and time. 
# The following scriot giver warnings like "Bad abbreviated month name"
#  and an error of "illegal month day".
#
# Ideas?


set xdata time
set timefmt "%b %d %Y %r"
set yrange [0:20]
set y2range [0:100]
set logscale y
set out "status.png"
plot 	"data.txt" u 1:6 w l t "1-min load" axis x1y1,\
 (yadda yadda)