We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fill_gaps seems to be not working on yearmonth:
harvest <- tsibble( date = c( make_yearmonth(year = 2000, month = 1), make_yearmonth(year = 2000, month = 4) ), fruit = rep(c("kiwi", "cherry"), each = 1), index = date ) # gaps as default `NA` fill_gaps(harvest, .full = TRUE)
output:
# A tsibble: 2 x 2 [3M] date fruit <mth> <chr> 1 2000 Jan kiwi 2 2000 Apr cherry
Expected would be to have it fill Feb, March with fruit = NA.
The text was updated successfully, but these errors were encountered:
Looks like this fixed it: https://stackoverflow.com/a/75981369/2302437
Sorry, something went wrong.
No branches or pull requests
fill_gaps seems to be not working on yearmonth:
output:
Expected would be to have it fill Feb, March with fruit = NA.
The text was updated successfully, but these errors were encountered: