8000 GitHub - saadtarik/XKCDdata: R package for getting data from XKCD comics :japanese_ogre:
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

saadtarik/XKCDdata

 
 

Repository files navigation

XKCDdata

XKCDdata is a little package to get data from individual xkcd comics.

Installation

# install.packages("devtools")
devtools::install_github("RobertMyles/XKCDdata")

Example:

Let's get this comic (it's number 1421):

https://imgs.xkcd.com/comics/future_self.png

library(XKCDdata)

get_comic(comic = 1421)
#> No encoding supplied: defaulting to UTF-8.
#> # A tibble: 1 x 11
#>   month   num  link  year  news  safe_title
#>   <chr> <int> <chr> <chr> <chr>       <chr>
#> 1     9  1421        2014       Future Self
#> # ... with 5 more variables: transcript <chr>, alt <chr>, img <chr>,
#> #   title <chr>, day <chr>

Or you can get a list of comics pretty easily using purrr, apply() or for loops. With purrr, it would be something like:

# list of comics:
cm <- c(1421, 641, 87, 92)
purrr::map_df(cm, get_comic)

Then you could plot it XKCD-style with the xkcd package if you wanted.

About

R package for getting data from XKCD comics 👹

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • R 100.0%
0