-
Notifications
You must be signed in to change notification settings - Fork 3
Home
Roel Hogervorst edited this page Feb 4, 2016
·
3 revisions
#imdb
IMDB r package based on omdbapi.com
Use this package to create a dataframe of information about your favorite shows from IMDB. The package works as a wraparound omdbapi.com and downloads a json file with your series information in it. The json is than placed into a dataframe.
library(devtools)
install_github("rmhogervorst/imdb")
library(imdb)
#imdbSeries(seriesname, seasons = 1) for example:
house<-imdbSeries("House MD", 1:2)
You can than enrich the dataset with episode information by
house2<-enrichIMDB(house)
This downloads all episode information from every row in your dataframe.