I have a dataframe that contains daily data over 50 years. I want to subset the data of every May 1st of each year.
I already converted the date like this:
Temp[,1] = as.Date(Temp[,1],format="%Y-%m-%d")
Any ideas?
I have a dataframe that contains daily data over 50 years. I want to subset the data of every May 1st of each year.
I already converted the date like this:
Temp[,1] = as.Date(Temp[,1],format="%Y-%m-%d")
Any ideas?