searchXKCD {RXKCD} | R Documentation |
This function uses grep to inspect the title and transcript for all the occurrences of a specified string and returns a data.frame with both the number and the title of the XKCD comic strips.
searchXKCD(which = "significant")
which |
string. |
a data.frame containing the following fields:
num The num of the XKCD comic strip
title The title of the XKCD comic strip
## Not run:
library("RXKCD")
searchXKCD(which="significant")
searchXKCD(which="someone is wrong")
## End(Not run)