I am working for the first time with a table containing dates and time and I am really struggling with making what I thought it was a simple plot. The table looks like this:
A B
1 2018-01-01 11:49:00 2018-01-10 16:00:00 2 2018-01-01 16:40:00 2018-01-05 15:30:00 3 2018-01-01 17:55:00 2018-01-26 16:00:00 4 2018-01-01 18:11:00 2018-01-02 16:00:00 5 2018-01-01 18:16:00 2018-01-24 15:00:00 6 2018-01-01 18:33:00 2018-01-06 16:00:00 7 2018-01-01 19:37:00 2018-01-14 15:30:00 8 2018-01-01 19:52:00 2018-03-29 15:00:00 9 2018-01-02 14:47:00 2018-01-04 16:00:00 10 2018-01-02 16:09:00 2018-01-05 15:00:00 11 2018-01-02 16:14:00 2018-01-13 13:00:00 12 2018-01-02 17:13:00 2018-02-15 15:00:00 13 2018-01-02 17:44:00 2018-01-20 15:30:00 14 2018-01-02 17:55:00 2018-01-10 15:30:00 15 2018-01-02 18:11:00 2018-03-04 15:00:00 16 2018-01-02 18:22:00 2018-01-25 15:00:00 17 2018-01-02 18:36:00 2018-01-09 15:00:00 18 2018-01-02 18:49:00 2018-02-04 15:00:00 19 2018-01-03 12:00:00 2018-01-26 15:00:00 20 2018-01-03 12:09:00 2018-01-04 15:30:00 21 2018-01-03 12:31:00 2018-01-08 15:00:00 22 2018-01-03 12:36:00 2018-02-19 16:00:00 23 2018-01-03 13:35:00 2018-01-26 15:00:00 24 2018-01-03 13:49:00 2018-01-20 15:30:00 25 2018-01-03 13:52:00 2018-01-21 15:00:00 26 2018-01-03 13:53:00 2018-03-26 15:00:00 27 2018-01-03 14:20:00 2018-01-26 16:00:00 28 2018-01-03 14:25:00 2018-03-10 15:00:00 29 2018-01-03 14:25:00 2018-03-02 15:00:00 30 2018-01-03 14:29:00 2018-02-23 16:00:00 31 2018-01-03 16:24:00 2018-02-22 15:00:00 32 2018-01-03 16:34:00 2018-02-27 15:30:00 33 2018-01-03 17:52:00 2018-01-04 16:00:00 34 2018-01-03 18:46:00 2018-01-05 15:30:00 35 2018-01-03 19:39:00 2018-01-16 15:00:00 36 2018-01-03 22:24:00 2018-01-13 15:00:00
There are several points per each day and I would like to make a scatterplot containing the mean, the max and the min per each day.
How can I do this? Thanks in advance. Andre