go_code {tidydatatutor} | R Documentation |
Send a Code String to Tidy Data Tutor
Description
Send a Code String to Tidy Data Tutor
Usage
go_code(code)
Arguments
code |
A string of R code. |
Value
A string with an appropriately formatted URL to Tidy Data Tutor (invisibly).
Examples
## Not run:
code =
"library(dplyr)
library(palmerpenguins)
penguins %>%
select(species, bill_length_mm) %>%
group_by(species) %>%
arrange(desc(bill_length_mm), .by_group = TRUE) %>%
slice(1)"
tidydatatutor::go_code(code)
## End(Not run)
[Package tidydatatutor version 0.1.0 Index]