Hello.
Pretend for a moment that I have database records like this:
date-time stamp data value
3/12/2001 4:00:00 40.23
3/12/2001 5:00:00 50.89
. .
. .
3/31/2001 23:00:00 24.59
And what I wish to do is create a line graph that has:
on the horizontal axis, the hours in a week, starting with midnight on Sunday and continuing through 11pm on Saturday night.
on the vertical axis, the average of the data values for those specific values (in other words, I need to average the data values for Monday, 3/12/2001 8am, Monday, 3/19/2001 8am, and Monday 3/26/2001 8am together and graph that as a point).
I have been unable to do this so far, and I've tried all sorts of grouping scams. Please offer your advice!!!
Thanks.
Pretend for a moment that I have database records like this:
date-time stamp data value
3/12/2001 4:00:00 40.23
3/12/2001 5:00:00 50.89
. .
. .
3/31/2001 23:00:00 24.59
And what I wish to do is create a line graph that has:
on the horizontal axis, the hours in a week, starting with midnight on Sunday and continuing through 11pm on Saturday night.
on the vertical axis, the average of the data values for those specific values (in other words, I need to average the data values for Monday, 3/12/2001 8am, Monday, 3/19/2001 8am, and Monday 3/26/2001 8am together and graph that as a point).
I have been unable to do this so far, and I've tried all sorts of grouping scams. Please offer your advice!!!
Thanks.