All Projects → JustinMShea → Wooldridge

JustinMShea / Wooldridge

The official R data package for "Introductory Econometrics: A Modern Approach". A vignette contains example models from each chapter.

Programming Languages

r
7636 projects

Projects that are alternatives of or similar to Wooldridge

pbapply
Adding progress bar to '*apply' functions in R
Stars: ✭ 115 (+27.78%)
Mutual labels:  cran, r-package
rcppgsl
Rcpp integration for GNU GSL vectors and matrices
Stars: ✭ 28 (-68.89%)
Mutual labels:  cran, r-package
PackageDevelopment
Task View: PackageDevelopment
Stars: ✭ 38 (-57.78%)
Mutual labels:  cran, r-package
heddlr
Bring a functional programming mindset to R Markdown document generation
Stars: ✭ 14 (-84.44%)
Mutual labels:  cran, r-package
Markovchain
Easy Handling Discrete Time Markov Chains
Stars: ✭ 80 (-11.11%)
Mutual labels:  r-package, cran
jpndistrict
🗾 Create Japansese Administration Area Maps
Stars: ✭ 18 (-80%)
Mutual labels:  cran, r-package
xfun
Miscellaneous R functions
Stars: ✭ 102 (+13.33%)
Mutual labels:  cran, r-package
inline
Inline C, C++ or Fortran functions in R
Stars: ✭ 33 (-63.33%)
Mutual labels:  cran, r-package
Rcpp
Seamless R and C++ Integration
Stars: ✭ 572 (+535.56%)
Mutual labels:  r-package, cran
Dataexplorer
Automate Data Exploration and Treatment
Stars: ✭ 362 (+302.22%)
Mutual labels:  r-package, cran
rprotobuf
R Interface to Protocol Buffers
Stars: ✭ 62 (-31.11%)
Mutual labels:  cran, r-package
Nanotime
Nanosecond Resolution Time Functionality for R
Stars: ✭ 39 (-56.67%)
Mutual labels:  r-package, cran
pkgkitten
Create simple packages which pass R CMD check
Stars: ✭ 31 (-65.56%)
Mutual labels:  cran, r-package
FLightR
R package to position animals with solar geolocation archival tags
Stars: ✭ 16 (-82.22%)
Mutual labels:  cran, r-package
worldfootballR
A wrapper for extracting world football (soccer) data from FBref, Transfermark, Understat and fotmob
Stars: ✭ 188 (+108.89%)
Mutual labels:  cran, r-package
UCSCXenaShiny
📊 An R package for interactively exploring UCSC Xena https://xenabrowser.net/datapages/
Stars: ✭ 52 (-42.22%)
Mutual labels:  cran, r-package
BAS
BAS R package https://merliseclyde.github.io/BAS/
Stars: ✭ 36 (-60%)
Mutual labels:  cran, r-package
TDAstats
R pipeline for computing persistent homology in topological data analysis. See https://doi.org/10.21105/joss.00860 for more details.
Stars: ✭ 26 (-71.11%)
Mutual labels:  cran, r-package
digest
R package to create compact hash digests of R objects
Stars: ✭ 94 (+4.44%)
Mutual labels:  cran, r-package
Configr
Implements the JSON, INI, YAML and TOML parser, for R setting and writing of configuration file.
Stars: ✭ 38 (-57.78%)
Mutual labels:  r-package, cran

CRAN_Status_Badge status Travis AppVeyor Build Status

wooldridge: 111 Data Sets for Econometrics

Economics students new to both econometrics and R may find the introduction to both challenging. However, if their text is "Introductory Econometrics: A Modern Approach, 6e" by Jeffrey M. Wooldridge, they are in luck!

The wooldridge package aims to lighten the task by easily loading any data set from the text. The package contains full documentation for each set and all data have been compressed to a fraction of their original size. Just install the package, load it, and call the data you wish to work with.

But wait...there's more! A vignette, Introductory Econometrics Examples✨, illustrates solutions to examples from each chapter of the text, offering a relevant introduction to econometric modelling with R. The vignette also includes an Appendix of helpful resources, such as Using R for Introductory Econometrics by Florian Hess.

While the original course companion site provides publicly available data sets for Eviews, Excel, and Stata commercial software, this package is the official R open source option. Using R while building a foundation in econometric modeling, not only saves learners a few units of currency, but also introduces them to software capable of scaling with the demands of modern statistical computing.

Note: All data sets are from the 6th edition (Wooldridge 2016, ISBN-13: 978-1-305-27010-7), which is compatible with all other editions.

Installation

One can Install wooldridge directly from The Comprehensive R Archive Network (CRAN), which depends on R >= 3.2.0.

install.packages("wooldridge")

Documentation

It's always recommended that one read supporting documentation for data sets of interest. This becomes trivial with the wooldridge package:

?wage1

Documentation includes Wooldridge's original source, data format, variable names and their descriptions, as well as page numbers where each set is referenced in the text. Some sets even contain additional notes suggesting related research projects or exploration.

Example

Load the wooldridge package and use the data() function to bring the desired data set into the working environment. Data set names match those in the text. Once present in the working environment, modelling data is quick and easy, leaving learners with more time to focus on interpretation of results and general diagnostics.

library(wooldridge)

data("wage1")

wageModel <- lm(lwage ~ educ + exper + tenure, data = wage1)

summary(wageModel)
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].