books.json
library(rjson)
library(jsonlite)
##
## Attaching package: 'jsonlite'
## The following objects are masked from 'package:rjson':
##
## fromJSON, toJSON
url<-"https://raw.githubusercontent.com/catcho1632/607-assignment-wk6/main/books.json"
parsedJSON<-fromJSON(url)
jsondf<-parsedJSON$Fiction
jsondf<-as.data.frame(jsondf)
jsondf
## Title authors genre theme
## 1 Brothers Karamazov Fyodor Dostoevsky psychological Craving of Faith
## 2 The Talisman Stephen King Peter Straub horror Coming of Age
## 3 The Great Gatsby F Scott Fitzgerald tragedy Society and Class
books.html
library(RCurl)
library(XML)
html_raw<-getURL("https://raw.githubusercontent.com/catcho1632/607-assignment-wk6/main/books.html")
htmldf<-readHTMLTable(html_raw)
htmldf
## $`NULL`
## Book Author Genre Theme
## 1 Brothers Karamazov Fyodor Dostoevsky Psychological Craving for Faith
## 2 Talisman Stephen King Peter Straub Horror Coming of Age
## 3 Great Gatsby F Scott Fitzgerald tragedy Soceity and Class
books.xml
library(httr)
library(curl)
## Using libcurl 7.64.1 with LibreSSL/2.8.3
##
## Attaching package: 'curl'
## The following object is masked from 'package:httr':
##
## handle_reset
library(XML)
library(RCurl)
url_raw<-getURL("https://raw.githubusercontent.com/catcho1632/607-assignment-wk6/main/books.xml")
xmldf<-xmlToDataFrame(url_raw)
xmldf
## Title Author genre theme
## 1 Brothers Karamazov Fyodor Dostoesky psychological Craving for Faith
## 2 The Talisman Stephen KingPeter Straub horror Coming of Age
## 3 The Great Gatsby F Scott Fitzgerald tragedy Society and Class
jsondf
## Title authors genre theme
## 1 Brothers Karamazov Fyodor Dostoevsky psychological Craving of Faith
## 2 The Talisman Stephen King Peter Straub horror Coming of Age
## 3 The Great Gatsby F Scott Fitzgerald tragedy Society and Class
htmldf
## $`NULL`
## Book Author Genre Theme
## 1 Brothers Karamazov Fyodor Dostoevsky Psychological Craving for Faith
## 2 Talisman Stephen King Peter Straub Horror Coming of Age
## 3 Great Gatsby F Scott Fitzgerald tragedy Soceity and Class
xmldf
## Title Author genre theme
## 1 Brothers Karamazov Fyodor Dostoesky psychological Craving for Faith
## 2 The Talisman Stephen KingPeter Straub horror Coming of Age
## 3 The Great Gatsby F Scott Fitzgerald tragedy Society and Class