From d8dc927b0ae134abf02c8c873011bc1a25d18ef6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Bisinger?= Date: Wed, 7 Jun 2023 15:01:55 +0200 Subject: [PATCH] Update links to the github repo --- README.Rmd | 10 +++------- README.md | 12 +++++++----- 2 files changed, 10 insertions(+), 12 deletions(-) diff --git a/README.Rmd b/README.Rmd index 1740987..a0e1b98 100644 --- a/README.Rmd +++ b/README.Rmd @@ -17,7 +17,7 @@ knitr::opts_chunk$set( [![CRAN status](https://www.r-pkg.org/badges/version/tstools)](https://CRAN.R-project.org/package=tstools) -[![R-CMD-check](https://github.com/mbannert/tstools/workflows/R-CMD-check/badge.svg)](https://github.com/mbannert/tstools/actions) +[![R-CMD-check](https://github.com/kof-ch/tstools/workflows/R-CMD-check/badge.svg)](https://github.com/kof-ch/tstools/actions) [![Lifecycle: stable](https://img.shields.io/badge/lifecycle-stable-brightgreen.svg)](https://lifecycle.r-lib.org/articles/stages.html#stable) [![CRAN RStudio mirror downloads](https://cranlogs.r-pkg.org/badges/grand-total/tstools?color=blue)](https://r-pkg.org/pkg/tstools) @@ -25,7 +25,7 @@ knitr::opts_chunk$set( Plot official statistics' time series conveniently: automatic legends, highlight windows, stacked bar chars with positive and negative contributions, sum-as-line option, two y-axes with automatic horizontal grids that fit both axes and other popular chart types. 'tstools' comes with a plethora of defaults to let you plot without setting an abundance of parameters first, but gives you the flexibility to tweak the defaults. In addition to charts, 'tstools' provides a super fast, 'data.table' backed time series I/O that allows the user to export / import long format, wide format and transposed wide format data to various file types. --> [pkgdown documentation](https://mbannert.github.io/tstools/) <- +-> [pkgdown documentation](https://kof-ch.github.io/tstools/) <- ## Installation @@ -33,7 +33,7 @@ You can install the development version of tstools from [GitHub](https://github. ``` r # install.packages("remotes") -remotes::install_github("mbannert/tstools") +remotes::install_github("kof-ch/tstools") ``` ## Example Use: Time Series Charts with Legends by Default @@ -61,7 +61,3 @@ tsplot( tsr = list("Johnson & Johnson" = tsl$JohnsonJohnson) ) ``` - - - - diff --git a/README.md b/README.md index e288b21..692620f 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ [![CRAN status](https://www.r-pkg.org/badges/version/tstools)](https://CRAN.R-project.org/package=tstools) -[![R-CMD-check](https://github.com/mbannert/tstools/workflows/R-CMD-check/badge.svg)](https://github.com/mbannert/tstools/actions) +[![R-CMD-check](https://github.com/kof-ch/tstools/workflows/R-CMD-check/badge.svg)](https://github.com/kof-ch/tstools/actions) [![Lifecycle: stable](https://img.shields.io/badge/lifecycle-stable-brightgreen.svg)](https://lifecycle.r-lib.org/articles/stages.html#stable) @@ -26,7 +26,7 @@ defaults. In addition to charts, ‘tstools’ provides a super fast, import long format, wide format and transposed wide format data to various file types. --\> [pkgdown documentation](https://mbannert.github.io/tstools/) \<- +\-\> [pkgdown documentation](https://kof-ch.github.io/tstools/) \<- ## Installation @@ -35,7 +35,7 @@ You can install the development version of tstools from ``` r # install.packages("remotes") -remotes::install_github("mbannert/tstools") +remotes::install_github("kof-ch/tstools") ``` ## Example Use: Time Series Charts with Legends by Default @@ -61,8 +61,10 @@ and use easily use 2 y-axis. (I know some argue those double axes are fundamentally flawed, but my peers didn’t care and asked for it.) ``` r -tsplot("Air Passengers" = tsl$AirPassengers, - tsr = list("Johnson & Johnson" = tsl$JohnsonJohnson)) +tsplot( + "Air Passengers" = tsl$AirPassengers, + tsr = list("Johnson & Johnson" = tsl$JohnsonJohnson) +) ```