I am relatively new to R I have a large data set which gives several data values for that day. So to simplify matters I need to get an average value for each day in in one table displaying the day and the average value.
Date_Recorded Value
2016-08-19 74.2
2016-08-19 74.6
2016-08-20 85.63
2016-08-20 88.55
And I would like the resulting table to look like this
Date_Recorded Value
2016-08-19 74.4
2016-08-20 87.09
Then after this How would I go about pulling out a date range of data say from 2016-08-20 to 2018-02-04 out of this data set or any other dataset?