05 Juli, 2016
This is a collection of both "real" and example data useful for the illustration of different aspects related to data science (e.g. visualization, modeling or statistical thinking in general).
Description: Information and user ratings on 58'788 movies from http://.IMDB.com. The data set contains all movies until 2005 that had at least one vote. There are 24 variables:
title: Title of the movieyear: Year the movie was releasedlength: Length in minutesbudget: Total movie budget in US dollarsrating: Average IMDB user ratingvotes: Number of IMDB users who rated the movier1-r10: If multiplied by 10 the variablesr1tor10give the percentiles of users who rated the movie with 1 star (worst possible rating)mpaa: Movie rating by the Motion Picture Association of America (MPAA), an association representing the six biggest Hollywood studiosAction-Short: Seven dummies indicating the movie genre. Variable names are: Action, Animation, Comedy, Drama, Documentary, Romance, Short.
Most useful for: Cross-sectional analysis, visualization, modeling
Version info: Version 0.0.1 of the ggplot2movies package as of
December 2015.
How to get it:
- In R:
install.packages("ggplot2movies")
library(ggplot2movies)
data("movies")Description: The dataset contains a subset of the fuel economy data that the Environmental Protection Agency (EPA) makes available on http://fueleconomy.gov. It contains only models which had a new release every year between 1999 and 2008, resulting in 234 observation on 38 unique models of car. There are 11 variables:
manufacturer: Name of the company that produced the carmodel: Name of the modeldispl: Engine displacement in litersyear: Year the car was releasedcyl: Number of cylinderstrans: Type of transmission.drv: Drivetrain. Possible values: f=front wheel, r=rear wheel, 4=four wheelcty: Miles per gallon (mpg) for city drivinghwy: Miles per gallon (mpg) for highway drivingfl: Fuel type: Possible values: c=CNG, d=diesel, e=ethanol E85, p=premium, r=regularclass: Class or type of car. Possible values: compact, subcompact, midsize, minivan, pickup, suv, 2seater
Most useful for: Visualization, simple modeling.
Version info: dataset as contained in ggplot2 version 2.0.0
(December 2015).
How to get it:
- In R:
install.packages("ggplot2")
library(ggplot2)
data("mpg")Description: Information about the housing market in Texas provided by the real estate center of the Texas A&M University (TAMU). Data on all variables was collected on a monthly basis from January 2000 to July 2015 with 187 observations for each of the 46 Texan cities within the dataset, totaling the number of observations to 8602. There are 9 variables:
city: Name of the city/ares according to the multiple listing service (MLS) classificationyear: Year observation was mademonth: Month observation was madesales: Total number of housing salesvolume: Total volume of the salesmedian: Median sales pricelistings: Total active listingsinventory: Number of month it would take to sell the current listings at the current pace of sales.date: Date observation was made as a combination ofyearandmonthwhere each month is a twelfth.
Most useful for: Time-series analysis, seasonal trends,
visualization, modeling.
Version info: dataset as contained in ggplot2 version 2.0.0
(December 2015).
How to get it:
- In R:
install.packages("ggplot2")
library(ggplot2)
data("txhousing")Description: The main data set flights contains Information about
all flights that departed from NYC (e.g. EWR, JFK and LGA) in 2013. This
amounts to a total of 336,776 flights. To help understand what causes
delays, it also includes a number of other useful datasets such as
weather: hourly meterological data for LGA, JFK and EWR.airlines: airline names and carrier codesairports: airport metadata such location and timezoneplanes: plane metadata such as speed, model etc.
Most useful for: Visualization, modeling, seasonal trends,
time-series and cross-sectional regression.
Version info: version 0.0.1
How to get it:
- In R:
install.packages("nycflights13")
library(nycflights13)
data("flights"); data("planes"); data("airlines"); data("airports"); data("weather")Description: The University of Texas Inequality Project (UTIP) produces data sets on pay inequality at the global level, at the national level including for Argentina, Brazil, Cuba, China, India, and Russia, and at the regional level for Europe. They have also used pay inequality as an instrument to estimate measures of household income inequality, for a large panel of countries from 1963 through 1999. As the ISO3 country codes are given, The data sets can easily be joined with other country data. A detailed description can be found on UTIP's website. For a peak at what can be done with one of their data sets see for example: http://ellisp.github.io/blog/2016/06/30/ehii
Most useful for: Visualization, modeling, time-series and
cross-sectional regression.
Version info: last accessed: 05.07.2016
How to get it: Go to: http://utip.lbj.utexas.edu/data.html