Learn R Programming

tidylog (version 0.2.0)

mutate: Wrapper around dplyr::mutate and related functions that prints information about the operation

Description

Wrapper around dplyr::mutate and related functions that prints information about the operation

Usage

mutate(.data, ...)

mutate_all(.data, ...)

mutate_if(.data, ...)

mutate_at(.data, ...)

add_tally(.data, ...)

add_count(.data, ...)

replace_na(.data, ...)

fill(.data, ...)

Arguments

.data

a tbl; see mutate

...

see mutate

Value

see mutate

Examples

Run this code
# NOT RUN {
mutate(mtcars, new_var = 1)
#> mutate: new variable 'new_var' with one unique value and 0% NA
mutate(mtcars, new_var = NA)
# }

Run the code above in your browser using DataLab