Skip to content
Roel Hogervorst edited this page Feb 4, 2016 · 3 revisions

#imdb

IMDB r package based on omdbapi.com

usage

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.

to install this package use

library(devtools)
install_github("rmhogervorst/imdb")
library(imdb)

to use this package

 #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.

Clone this wiki locally