1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
|
% Generated by roxygen2 (4.0.1): do not edit by hand
\docType{data}
\name{movies}
\alias{movies}
\title{Movie information and user ratings from IMDB.com.}
\format{A data frame with 28819 rows and 24 variables}
\usage{
data(movies)
}
\description{
The internet movie database, \url{http://imdb.com/}, is a website devoted
to collecting movie data supplied by studios and fans. It claims to be the
biggest movie database on the web and is run by amazon. More about
information imdb.com can be found online,
\url{http://imdb.com/help/show_leaf?about}, including information about
the data collection process,
\url{http://imdb.com/help/show_leaf?infosource}.
}
\details{
Movies were selected for inclusion if they had a known length and had been rated by at least one imdb user. The data set contains the following fields:
\itemize{
\item title. Title of the movie.
\item year. Year of release.
\item budget. Total budget (if known) in US dollars
\item length. Length in minutes.
\item rating. Average IMDB user rating.
\item votes. Number of IMDB users who rated this movie.
\item r1-10. Multiplying by ten gives percentile (to nearest 10\%) of users who rated this movie a 1.
\item mpaa. MPAA rating.
\item action, animation, comedy, drama, documentary, romance, short. Binary variables representing if movie was classified as belonging to that genre.
}
}
\references{
\url{http://had.co.nz/data/movies/}
}
\keyword{datasets}
|