-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathREADME.Rmd
46 lines (32 loc) · 960 Bytes
/
README.Rmd
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
39
40
41
42
43
44
45
---
output: github_document
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r, echo = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "README-"
)
```
# About
[![Travis-CI Build Status](https://travis-ci.org/jjchern/mmdata.svg?branch=master)](https://travis-ci.org/jjchern/mmdata)
[![AppVeyor Build Status](https://ci.appveyor.com/api/projects/status/github/jjchern/mmdata?branch=master&svg=true)](https://ci.appveyor.com/project/jjchern/mmdata)
The purpose of the R data package `mmdata` is to store datasets from the beloved econometrics textbook [Mastering 'Metrics].
[Mastering 'Metrics]: http://masteringmetrics.com/
# Installation
```R
# install.packages("devtools")
devtools::install_github("jjchern/mmdata")
```
# Usage
## List All the Datasets
```{r}
library(mmdata)
ls("package:mmdata", all = TRUE)
```
## The QOB Instrument from AK91
```{r}
library(tibble)
mmdata::qob
```