tidyr Verbs for ped-ObjectsSee tidyr documentation of the respective functions for
description and examples.
# S3 method for ped
fill(data, ..., .direction = c("down", "up"),
keep_attributes = TRUE)# S3 method for nested_fdf
fill(data, ..., .direction = c("down", "up"),
keep_attributes = TRUE)
an object of class ped, see as_ped.
A selection of columns. If empty, nothing happens. You can
supply bare variable names, select all variables between x and z
with x:z, exclude y with -y. For more selection options, see the
dplyr::select() documentation.
Direction in which to fill missing values. Currently either "down" (the default) or "up".
conserve attributes? defaults to TRUE.
A modified ped object.