View source: R/step_epi_slide.R
clean_f_name | R Documentation |
Create short function names
clean_f_name(.f, max_length = 20L)
.f |
a function, character string, or lambda. For example, |
max_length |
integer determining how long names can be |
a character string of length at most max_length
that
(partially) describes the function.
clean_f_name(mean)
clean_f_name("mean")
clean_f_name(~ mean(.x, na.rm = TRUE))
clean_f_name(\(x) mean(x, na.rm = TRUE))
clean_f_name(function(x) mean(x, na.rm = TRUE, trim = 0.2357862))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.