repurrrsive (version 1.0.0)

got_chars_json: 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()

Arguments

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

Run this code
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
}

Run the code above in your browser using DataLab