tidyr (version 0.3.1)

fill: Fill in missing values.

Description

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.

Usage

fill(data, ...)

Arguments

data
A data frame.
...
Specification of columns to fill. Use bare variable names. Select all variables between x and z with x:z, exclude y with -y. For more options, see the select documentation.

Examples

Run this code
df <- data.frame(Month = 1:12, Year = c(2000, rep(NA, 11)))
df %>% fill(Year)

Run the code above in your browser using DataLab