This function is used by append_lsdf_rows()
, and you normally
should not use it directly.
emptyDf(colnames, nrow, fillWith = "")
The column names for the dataframe.
The number of rows.
What to fill the dataframe with.
The data.frame.
limonaid::emptyDf(c("x", "y"), 3);
#> x y
#> 1
#> 2
#> 3