The hardware and bandwidth for this mirror is donated by METANET, the Webhosting and Full Service-Cloud Provider.
If you wish to report a bug, or if you are interested in having us mirror your free-software or open-source project, please feel free to contact us at mirror[@]metanet.ch.
XKCDdata is a little package to get data from individual xkcd comics.
# install.packages("devtools")
::install_github("RobertMyles/XKCDdata") devtools
Let’s get data on this comic (it’s number 1421):
library(XKCDdata)
get_comic(comic = 1421)
#> # A tibble: 1 x 11
#> month num link year news safe_title
#> <chr> <int> <chr> <chr> <chr> <chr>
#> 1 9 1421 http://xkcd.com/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:
<- c(1421, 641, 87, 92)
cm ::map_df(cm, get_comic) purrr
Then you could plot it XKCD-style with the xkcd package if you wanted.
Thanks to Colin, you can view the comics inside your default Viewer (in the Viewer pane if you’re on RStudio)! Give it a shot with:
print_xkcd(1)
These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.