got_chars_json {repurrrsive} | R Documentation |
Paths to Game of Thrones data as JSON and XML
Description
Paths to Game of Thrones data as JSON and XML
Usage
got_chars_json()
got_chars_xml()
Value
Local path to JSON or XML file containing Game of Thrones data
See Also
Other Game of Thrones data and functions:
got_chars
Examples
got_chars_json()
if (require("jsonlite")) {
gotcj <- fromJSON(got_chars_json(), simplifyDataFrame = FALSE)
identical(got_chars, gotcj)
}
got_chars_xml()
if (require("xml2")) {
xml <- read_xml(got_chars_xml())
xml
}
[Package repurrrsive version 1.1.0 Index]