...
inputsCode
fill(df, fooy = x)
Condition
Error in `fill()`:
! Arguments in `...` must be passed by position, not name.
x Problematic argument:
* fooy = x
Code
df %>% fill(x, .direction = "foo")
Condition
Error in `fill()`:
! `.direction` must be one of "down", "up", "downup", or "updown", not "foo".
.by
can't select columns that don't existCode
fill(df, y, .by = z)
Condition
Error in `dplyr::mutate()`:
! Can't select columns that don't exist.
x Column `z` doesn't exist.
.by
can't be used on a grouped data frameCode
fill(df, y, .by = x)
Condition
Error in `dplyr::mutate()`:
! Can't supply `.by` when `.data` is a grouped data frame.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.