Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pachadotdev/hansen
Datasets and Unofficial Solutions from 'Econometrics' by Bruce E. Hansen
https://github.com/pachadotdev/hansen
econometrics rstats
Last synced: 21 days ago
JSON representation
Datasets and Unofficial Solutions from 'Econometrics' by Bruce E. Hansen
- Host: GitHub
- URL: https://github.com/pachadotdev/hansen
- Owner: pachadotdev
- License: cc0-1.0
- Created: 2024-10-27T05:11:57.000Z (about 2 months ago)
- Default Branch: main
- Last Pushed: 2024-10-27T05:14:04.000Z (about 2 months ago)
- Last Synced: 2024-11-26T19:40:45.671Z (26 days ago)
- Topics: econometrics, rstats
- Language: R
- Homepage: https://pacha.dev/hansen
- Size: 9.19 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.Rmd
- License: LICENSE.md
Awesome Lists containing this project
README
---
output: github_document
---```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```# hansen
The goal of hansen is to provide the datasets used in the exercises of the book
*Econometrics* by Bruce E. Hansen following the Tidy Data principles.## Installation
You can install the development version of hansen like so:
``` r
remotes::install_github("pachadotdev/hansen")
```## Usage
As an example, here is how to get the description for the data from Mankiw,
Romer and Well (1992), which is a dataset for economic growth analysis:```{r example}
library(hansen)str(mrw1992)
```