We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
dplyr::mutate() allows sequential updates to variables, e.g.
dplyr::mutate()
x %>% dplyr::mutate( col = gsub("t", "", col), col = gsub("\\s+$", "xxx", col) )
but duplicate_argument_linter() sees col used twice and throws.
duplicate_argument_linter()
col