r_bloggers: Retrieve raw R code from a kaggle notebook

Description Usage Arguments Value Examples

View source: R/r_bloggers.R

Description

Retrieve raw R code from a kaggle notebook

Usage

1
r_bloggers(url, method, padding)

Arguments

url

Link to an R-bloggers article

method

Not all websites are formatted consistently. To overcome this, try a different method by setting the method parameter to integers 2 and greater to try other available methods

padding

Specify what goes between the last character of one code block and the first character of the next code block. Default is a two new lines, which appears visually as one new line between code blocks.

Value

A character vector of length 1 containing the R code from the target url.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
## Not run: 
library(dplyr)
paste0("https://www.r-bloggers.com/how-to-create-a-bar-",
"chart-race-in-r-mapping-united-states-city-population-1790-2010/") %>%
r_bloggers

# Same as above but provided to cat for easy viewing
paste0("https://www.r-bloggers.com/how-to-create-a-bar-",
"chart-race-in-r-mapping-united-states-city-population-1790-2010/") %>%
r_bloggers %>% cat

## End(Not run)

rawr documentation built on May 17, 2021, 5:07 p.m.

Related to r_bloggers in rawr...