fill {tidyr} | R Documentation |
Fills missing values in using the previous entry. This is useful in the common output format where values are not repeated, they're recorded each time they change.
fill(data, ..., .direction = c("down", "up"))
data |
A data frame. |
... |
Specification of columns to expand. To find all unique combinations of x, y and z, including those not
found in the data, supply each variable as a separate argument.
To find only the combinations that occur in the data, use nest:
You can combine the two forms. For example,
For factors, the full set of levels (not just those that appear in the
data) are used. For continuous variables, you may need to fill in values
that don't appear in the data: to do so use expressions like
Length-zero (empty) elements are automatically dropped. |
.direction |
Direction in which to fill missing values. Currently either "down" (the default) or "up". |
Missing values are replaced in atomic vectors; NULL
s are replaced
in list.
df <- data.frame(Month = 1:12, Year = c(2000, rep(NA, 11))) df %>% fill(Year)