From 732f6e4a4b2c983842363bb0314a41169e3f0a53 Mon Sep 17 00:00:00 2001 From: Elio Campitelli Date: Tue, 24 Sep 2024 16:22:07 +1000 Subject: [PATCH] Adds https to cran badge --- README.Rmd | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.Rmd b/README.Rmd index 3c54a04f..8f22247a 100644 --- a/README.Rmd +++ b/README.Rmd @@ -20,9 +20,11 @@ set.seed(42) [![R-CMD-check](https://github.com/eliocamp/metR/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/eliocamp/metR/actions/workflows/R-CMD-check.yaml) [![Coverage status](https://codecov.io/gh/eliocamp/metR/branch/master/graph/badge.svg?token=jVznWTMCpz)](https://app.codecov.io/gh/eliocamp/metR) -[![CRAN status](http://www.r-pkg.org/badges/version/metR)](https://cran.r-project.org/package=metR) +[![CRAN status](https://www.r-pkg.org/badges/version/metR)](https://CRAN.R-project.org/package=metR) [![DOI](https://zenodo.org/badge/96357263.svg)](https://zenodo.org/badge/latestdoi/96357263) + + metR packages several functions and utilities that make R better for handling meteorological data in the tidy data paradigm. It started mostly sa a packaging of assorted wrappers and tricks that I wrote for my day to day work as a researcher in atmospheric sciences. Since then, it has grown organically and for my own needs and feedback from users. Conceptually it's divided into *visualization tools* and *data tools*. The former are geoms, stats and scales that help with plotting using [ggplot2](https://ggplot2.tidyverse.org/index.html), such as `stat_contour_fill()` or `scale_y_level()`, while the later are functions for common data processing tools in the atmospheric sciences, such as `Derivate()` or `EOF()`; these are implemented to work in the [data.table](https://github.com/Rdatatable/data.table/wiki) paradigm, but also work with regular data frames.