I have a data frame with multiple time series . I would like to remove all data in date that have NA values.
The data frame looks as follows,
Date Time Value
1/1/2014 0:00 30
1/1/2014 1:00 20
1/1/2014 2:00 12
1/1/2014 3:00 NA
.
.
.
1/1/2014 23:00 23
2/1/2014 0:00 12
2/1/2014 1:00 23
2/1/2014 2:00 34
2/1/2014 3:00 43
.
.
.
2/1/2014 23:00 30
3/1/2014 0:00 34
3/1/2014 1:00 NA
3/1/2014 2:00 NA
3/1/2014 3:00 23
.
.
.
3/1/2014 23:00 45
I would remove all data in date that have NA values so that the data frame look as follows,
Date Time Value
2/1/2014 0:00 12
2/1/2014 1:00 23
2/1/2014 2:00 34
2/1/2014 3:00 43
.
.
.
2/1/2014 23:00 30