Skip to content

Commit

Permalink
Add r-universe badge
Browse files Browse the repository at this point in the history
  • Loading branch information
rossellhayes committed Mar 4, 2022
1 parent 6836680 commit 81c8d7a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
1 change: 1 addition & 0 deletions README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ library(badger)

<!-- badges: start -->
`r badge_cran_release(color = "brightgreen")`
[![crossmap status badge](https://rossellhayes.r-universe.dev/badges/crossmap)](https://rossellhayes.r-universe.dev)
`r badge_lifecycle("stable")`
`r badge_license(color = "blueviolet")`
`r badge_github_actions(action = "R-CMD-check")`
Expand Down
12 changes: 7 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,14 @@
<!-- badges: start -->

[![](https://www.r-pkg.org/badges/version/crossmap?color=brightgreen)](https://cran.r-project.org/package=crossmap)
[![crossmap status
badge](https://rossellhayes.r-universe.dev/badges/crossmap)](https://rossellhayes.r-universe.dev)
[![](https://img.shields.io/badge/lifecycle-stable-brightgreen.svg)](https://lifecycle.r-lib.org/articles/stages.html#stable)
[![License:
MIT](https://img.shields.io/badge/license-MIT-blueviolet.svg)](https://cran.r-project.org/web/licenses/MIT)
[![R build
status](https://github.com/rossellhayes/crossmap/workflows/R-CMD-check/badge.svg)](https://github.com/rossellhayes/crossmap/actions)
[![](https://codecov.io/gh/rossellhayes/crossmap/branch/main/graph/badge.svg)](https://codecov.io/gh/rossellhayes/crossmap)
[![](https://codecov.io/gh/rossellhayes/crossmap/branch/main/graph/badge.svg)](https://app.codecov.io/gh/rossellhayes/crossmap)
[![CodeFactor](https://www.codefactor.io/repository/github/rossellhayes/crossmap/badge)](https://www.codefactor.io/repository/github/rossellhayes/crossmap)
[![Dependencies](https://tinyverse.netlify.com/badge/crossmap)](https://cran.r-project.org/package=crossmap)
<!-- badges: end -->
Expand Down Expand Up @@ -86,7 +88,7 @@ cross_fit(
cols = c(cyl, vs),
weights = c(wt, NA)
)
#> # A tibble: 40 x 21
#> # A tibble: 40 × 21
#> model weights cyl vs term estimate std.error statistic p.value
#> <chr> <chr> <dbl> <dbl> <chr> <dbl> <dbl> <dbl> <dbl>
#> 1 hp NA 4 0 (Interce… 26 NaN NaN NaN
Expand Down Expand Up @@ -115,7 +117,7 @@ cross_list(number = 1:3, letter = letters[1:3])
#> $letter
#> [1] "a" "a" "a" "b" "b" "b" "c" "c" "c"
cross_tbl(number = 1:3, letter = letters[1:3])
#> # A tibble: 9 x 2
#> # A tibble: 9 × 2
#> number letter
#> <int> <chr>
#> 1 1 a
Expand All @@ -139,7 +141,7 @@ cross_join(
),
tibble(dessert = c("cupcake", "muffin", "streudel"), makes = c(8, 6, 1))
)
#> # A tibble: 9 x 4
#> # A tibble: 9 × 4
#> color fruit dessert makes
#> <chr> <chr> <chr> <dbl>
#> 1 red apple cupcake 8
Expand All @@ -159,7 +161,7 @@ means you don’t have to worry about adding `_int()`, `_dbl()` or

``` r
map_vec(sample(5), ~ . ^ 2)
#> [1] 9 16 4 25 1
#> [1] 4 1 9 16 25
map_vec(c("apple", "banana", "cantaloupe"), paste0, "s")
#> [1] "apples" "bananas" "cantaloupes"
```
Expand Down

0 comments on commit 81c8d7a

Please sign in to comment.