Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

R universe #216

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 5 additions & 6 deletions README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ cat(
badger::badge_cran_download("did", "grand-total", "blue"),
badger::badge_cran_download("did", "last-month", "blue"),
badger::badge_cran_release("did", "blue"),
badger::badge_devel("bcallaway11/did", "blue"),
badger::runiverse("did", "bcallaway11"),
badger::badge_cran_checks("did"),
# badger::badge_codecov("bcallaway11/did"),
badger::badge_last_commit("bcallaway11/did")
Expand Down Expand Up @@ -64,17 +64,16 @@ There has been some recent work on DiD with multiple time periods. The **did**

## Installation

You can install **did** from CRAN with:
The stable version of **did** is available on CRAN.

```{r eval=FALSE}
install.packages("did")
```

or get the latest version from github with:
Or, you can grab the latest development version from R-universe.

```{r gh-installation, eval = FALSE}
# install.packages("devtools")
devtools::install_github("bcallaway11/did")
```{r r-universe-installation, eval = FALSE}
install.packages("did", repos = "https://bcallaway11.r-universe.dev")
```

## A short example
Expand Down
9 changes: 4 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
[![](http://cranlogs.r-pkg.org/badges/grand-total/did?color=blue)](https://cran.r-project.org/package=did)
[![](http://cranlogs.r-pkg.org/badges/last-month/did?color=blue)](https://cran.r-project.org/package=did)
[![](https://www.r-pkg.org/badges/version/did?color=blue)](https://cran.r-project.org/package=did)
[![](https://img.shields.io/badge/devel%20version-2.1.2-blue.svg)](https://github.com/bcallaway11/did)
[![r-universe status badge](https://bcallaway11.r-universe.dev/badges/did)](https://bcallaway11.r-universe.dev/did)
[![CRAN
checks](https://badges.cranchecks.info/summary/did.svg)](https://cran.r-project.org/web/checks/check_results_did.html)
[![](https://img.shields.io/github/last-commit/bcallaway11/did.svg)](https://github.com/bcallaway11/did/commits/master)
Expand Down Expand Up @@ -57,17 +57,16 @@ There has been some recent work on DiD with multiple time periods. The

## Installation

You can install **did** from CRAN with:
Or, you can grab the latest development version from R-universe.

``` r
install.packages("did")
```

or get the latest version from github with:
Or, you can grab the latest development version from R-universe.

``` r
# install.packages("devtools")
devtools::install_github("bcallaway11/did")
install.packages("did", repos = "https://bcallaway11.r-universe.dev")
```

## A short example
Expand Down
Loading