This is a convenient way to add one or more rows of data to an existing data
frame. See tribble()
for an easy way to create an complete
data frame row-by-row.
add_case()
is an alias of add_row()
.
add_row(.data, ..., .before = NULL, .after = NULL)
.data | Data frame to append to. |
---|---|
... | Name-value pairs, passed on to |
.before, .after | One-based row index where to add the new rows, default: after last row. |
It is unclear if add_row()
and its alias add_cases()
should ensure
that all columns have length one by wrapping in a list if necessary.
See https://github.com/tidyverse/tibble/pull/503 and
https://github.com/tidyverse/tibble/issues/205 for details.
Other addition: add_column
# add_row --------------------------------- df <- tibble(x = 1:3, y = 3:1) add_row(df, x = 4, y = 0)#> # A tibble: 4 x 2 #> x y #> <dbl> <dbl> #> 1 1 3 #> 2 2 2 #> 3 3 1 #> 4 4 0# You can specify where to add the new rows add_row(df, x = 4, y = 0, .before = 2)#> # A tibble: 4 x 2 #> x y #> <dbl> <dbl> #> 1 1 3 #> 2 4 0 #> 3 2 2 #> 4 3 1# You can supply vectors, to add multiple rows (this isn't # recommended because it's a bit hard to read) add_row(df, x = 4:5, y = 0:-1)#> # A tibble: 5 x 2 #> x y #> <int> <int> #> 1 1 3 #> 2 2 2 #> 3 3 1 #> 4 4 0 #> 5 5 -1# Absent variables get missing values add_row(df, x = 4)#> # A tibble: 4 x 2 #> x y #> <dbl> <int> #> 1 1 3 #> 2 2 2 #> 3 3 1 #> 4 4 NA# You can't create new variables if (FALSE) { add_row(df, z = 10) }