Fill function

Fill data values downstream, like in spreadsheets

Fill data values downstream, like in spreadsheets

Replaces "ditto" values with preceding values

Fill(x, ditto="")

Arguments

  • x: Vector, possibly with missing values
  • ditto: What to fill, typically empty string "" (default) or NA

Returns

Vector with replaced values

Author(s)

Alexey Shipunov

See Also

Ditto

Examples

aa <- c("a", "a", "", "b", "", "c", "d", "") Fill(aa) bb <- c("a", "a", NA, "b", NA, "c", "d", NA) Fill(bb, ditto=NA) dd <- c("", "a", "a", "", "", "b", NA, "", "c", "d", "") Fill(dd)
  • Maintainer: ORPHANED
  • License: GPL (>= 2)
  • Last published: 2023-02-05

Useful links