Description Usage Arguments Examples
Indicate that when printing repeat values should be hidden.
1 | dontrepeat(x, replace.with = "")
|
x |
a vector |
replace.with |
what to replace the value with. |
1 2 3 4 5 6 7 | library(dplyr)
library(tibble)
x <- cursory_all(group_by(iris, Species), lst(mean, sd))
x <- as.data.frame(arrange(x, Species))
print(x)
x[[1]] <- dontrepeat(x[[1]], replace.with='"')
print(x)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.