Skip to content

Commit

Permalink
Update README to k5cents
Browse files Browse the repository at this point in the history
  • Loading branch information
k5cents committed Mar 11, 2024
1 parent d326f3f commit 50c7392
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
14 changes: 7 additions & 7 deletions README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ if (!interactive()) {
[![Codecov test coverage][cov_badge]][cov_link]
![Downloads][dl_badge]
[![R build status][ga_badge]][ga_link]
[![R-CMD-check](https://github.com/kiernann/mdbr/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/kiernann/mdbr/actions/workflows/R-CMD-check.yaml)
[![R-CMD-check](https://github.com/k5cents/mdbr/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/k5cents/mdbr/actions/workflows/R-CMD-check.yaml)
<!-- badges: end -->

The goal of mdbr is to easily access the open source [MDB Tools][mdbt] written
Expand All @@ -46,7 +46,7 @@ The development version can be installed from [GitHub][gh].

```{r github, eval=FALSE}
# install.packages("remotes")
remotes::install_github("kiernann/mdbr")
remotes::install_github("k5cents/mdbr")
```

The user must install [MDB Tools][mdbt] separately. Users on Debian systems can
Expand Down Expand Up @@ -128,13 +128,13 @@ mdb_schema(ex, "Airports", condense = TRUE)
[life_link]: https://www.tidyverse.org/lifecycle/#experimental
[cran_badge]: https://www.r-pkg.org/badges/version/mdbr
[cran_link]: https://CRAN.R-project.org/package=mdbr
[ga_badge]: https://github.com/kiernann/mdbr/workflows/R-CMD-check/badge.svg
[ga_link]: https://github.com/kiernann/mdbr/actions
[cov_badge]: https://img.shields.io/codecov/c/github/kiernann/mdbr/master.svg
[cov_link]: https://codecov.io/gh/kiernann/mdbr?branch=master
[ga_badge]: https://github.com/k5cents/mdbr/workflows/R-CMD-check/badge.svg
[ga_link]: https://github.com/k5cents/mdbr/actions
[cov_badge]: https://img.shields.io/codecov/c/github/k5cents/mdbr/master.svg
[cov_link]: https://codecov.io/gh/k5cents/mdbr?branch=master
[dl_badge]: https://cranlogs.r-pkg.org/badges/grand-total/mdbr
[mdbt]: https://github.com/mdbtools/mdbtools
[gh]: https://github.com/kiernann/mdbr
[gh]: https://github.com/k5cents/mdbr
[cran]: https://cran.r-project.org/package=mdbr
[readme]: https://github.com/mdbtools/mdbtools/blob/dev/README.md
[nycf]: https://github.com/hadley/nycflights13
Expand Down
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,11 @@ experimental](https://img.shields.io/badge/lifecycle-experimental-orange.svg)](h
[![CRAN
status](https://www.r-pkg.org/badges/version/mdbr)](https://CRAN.R-project.org/package=mdbr)
[![Codecov test
coverage](https://img.shields.io/codecov/c/github/kiernann/mdbr/master.svg)](https://codecov.io/gh/kiernann/mdbr?branch=master)
coverage](https://img.shields.io/codecov/c/github/k5cents/mdbr/master.svg)](https://codecov.io/gh/k5cents/mdbr?branch=master)
![Downloads](https://cranlogs.r-pkg.org/badges/grand-total/mdbr) [![R
build
status](https://github.com/kiernann/mdbr/workflows/R-CMD-check/badge.svg)](https://github.com/kiernann/mdbr/actions)
status](https://github.com/k5cents/mdbr/workflows/R-CMD-check/badge.svg)](https://github.com/k5cents/mdbr/actions)
[![R-CMD-check](https://github.com/k5cents/mdbr/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/k5cents/mdbr/actions/workflows/R-CMD-check.yaml)
<!-- badges: end -->

The goal of mdbr is to easily access the open source [MDB
Expand All @@ -32,11 +33,11 @@ install.packages("mdbr")
```

The development version can be installed from
[GitHub](https://github.com/kiernann/mdbr).
[GitHub](https://github.com/k5cents/mdbr).

``` r
# install.packages("remotes")
remotes::install_github("kiernann/mdbr")
remotes::install_github("k5cents/mdbr")
```

The user must install [MDB Tools](https://github.com/mdbtools/mdbtools)
Expand Down Expand Up @@ -96,7 +97,7 @@ Tables can be easily converted to a temporary file and read immediately.

``` r
read_mdb(ex, "Airports")
#> # A tibble: 1,458 x 8
#> # A tibble: 1,458 × 8
#> faa name lat lon alt tz dst tzone
#> <chr> <chr> <dbl> <dbl> <dbl> <dbl> <chr> <chr>
#> 1 04G Lansdowne Airport 41.1 -80.6 1044 -5 A America/New_York
Expand All @@ -109,7 +110,7 @@ read_mdb(ex, "Airports")
#> 8 0G7 Finger Lakes Regional Airport 42.9 -76.8 492 -5 A America/New_York
#> 9 0P2 Shoestring Aviation Airfield 39.8 -76.6 1000 -5 U America/New_York
#> 10 0S9 Jefferson County Intl 48.1 -123. 108 -8 A America/Los_Angeles
#> # … with 1,448 more rows
#> # 1,448 more rows
```

When reading a converted table, you might need to know what types of
Expand Down Expand Up @@ -156,5 +157,4 @@ mdb_schema(ex, "Airports", condense = TRUE)
```

<!-- refs: start -->

<!-- refs: end -->

0 comments on commit 50c7392

Please sign in to comment.