From 57d9a23416e6141da67ebd4ab464d6a138c51f2d Mon Sep 17 00:00:00 2001 From: rsquaredin Date: Thu, 20 May 2021 17:32:22 +0530 Subject: [PATCH] on cran --- DESCRIPTION | 5 ++--- NEWS.md | 4 ++++ README.Rmd | 8 ++------ README.md | 15 ++++----------- _pkgdown.yml | 1 + cran-comments.md | 4 ++-- 6 files changed, 15 insertions(+), 22 deletions(-) diff --git a/DESCRIPTION b/DESCRIPTION index 5ed5b90..4833aa6 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,12 +1,12 @@ Package: vistributions Type: Package Title: Visualize Probability Distributions -Version: 0.1.1.9000 +Version: 0.1.2 Authors@R: person("Aravind", "Hebbali", email = "hebbali.aravind@gmail.com", role = c("aut", "cre")) Description: Visualize and compute percentiles/probabilities of normal, t, f, chi square and binomial distributions. Depends: - R(>= 3.1) + R(>= 3.2) Imports: ggplot2, magrittr, @@ -23,6 +23,5 @@ License: MIT + file LICENSE URL: https://github.com/rsquaredacademy/vistributions, https://vistributions.rsquaredacademy.com BugReports: https://github.com/rsquaredacademy/vistributions/issues Encoding: UTF-8 -LazyData: true RoxygenNote: 7.1.1 VignetteBuilder: knitr diff --git a/NEWS.md b/NEWS.md index 908b31f..ed97213 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,7 @@ +# vistributions 0.1.2 + +This is a patch release to fix CRAN note about lazy data. + # vistributions 0.1.1 This is a patch release to fix bugs in the app. diff --git a/README.Rmd b/README.Rmd index 946a131..082d154 100644 --- a/README.Rmd +++ b/README.Rmd @@ -19,7 +19,7 @@ knitr::opts_chunk$set( [![CRAN_Status_Badge](https://www.r-pkg.org/badges/version/vistributions)](https://cran.r-project.org/package=vistributions) [![cran checks](https://cranchecks.info/badges/summary/vistributions)](https://cran.r-project.org/web/checks/check_results_vistributions.html) [![R build status](https://github.com/rsquaredacademy/vistributions/workflows/R-CMD-check/badge.svg)](https://github.com/rsquaredacademy/vistributions/actions) -[![Coverage Status](https://img.shields.io/codecov/c/github/rsquaredacademy/vistributions/master.svg)](https://codecov.io/github/rsquaredacademy/vistributions?branch=master) [![status](https://tinyverse.netlify.com/badge/vistributions)](https://CRAN.R-project.org/package=vistributions) [![lifecycle](https://img.shields.io/badge/lifecycle-maturing-blue.svg)](https://www.tidyverse.org/lifecycle/#maturing) [![](https://cranlogs.r-pkg.org/badges/grand-total/vistributions)](https://cran.r-project.org/package=vistributions) +[![Coverage Status](https://img.shields.io/codecov/c/github/rsquaredacademy/vistributions/master.svg)](https://codecov.io/github/rsquaredacademy/vistributions?branch=master) [![status](https://tinyverse.netlify.com/badge/vistributions)](https://CRAN.R-project.org/package=vistributions) [![Lifecycle: stable](https://img.shields.io/badge/lifecycle-stable-brightgreen.svg)](https://lifecycle.r-lib.org/articles/stages.html) [![](https://cranlogs.r-pkg.org/badges/grand-total/vistributions)](https://cran.r-project.org/package=vistributions) ## Installation @@ -35,7 +35,7 @@ devtools::install_github("rsquaredacademy/vistributions") ## Articles -- [Explore Distributions](https://vistributions.rsquaredacademy.com/articles/introduction_to_vistributions.html) +- [Explore Distributions](https://vistributions.rsquaredacademy.com/articles/introduction-to-vistributions.html) ## Usage @@ -61,7 +61,3 @@ vdist_normal_prob(c(-1.74, 1.83), type = 'both') If you encounter a bug, please file a minimal reproducible example using [reprex](https://reprex.tidyverse.org/index.html) on github. For questions and clarifications, use [StackOverflow](https://stackoverflow.com/). - -## Community Guidelines - -Please note that the 'vistributions' project is released with a [Contributor Code of Conduct](CODE_OF_CONDUCT.md). By contributing to this project, you agree to abide by its terms. diff --git a/README.md b/README.md index 491a81d..fc0b87e 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,8 @@ status](https://github.com/rsquaredacademy/vistributions/workflows/R-CMD-check/b [![Coverage Status](https://img.shields.io/codecov/c/github/rsquaredacademy/vistributions/master.svg)](https://codecov.io/github/rsquaredacademy/vistributions?branch=master) [![status](https://tinyverse.netlify.com/badge/vistributions)](https://CRAN.R-project.org/package=vistributions) -[![lifecycle](https://img.shields.io/badge/lifecycle-maturing-blue.svg)](https://www.tidyverse.org/lifecycle/#maturing) +[![Lifecycle: +stable](https://img.shields.io/badge/lifecycle-stable-brightgreen.svg)](https://lifecycle.r-lib.org/articles/stages.html) [![](https://cranlogs.r-pkg.org/badges/grand-total/vistributions)](https://cran.r-project.org/package=vistributions) @@ -32,8 +33,8 @@ devtools::install_github("rsquaredacademy/vistributions") ## Articles - - [Explore - Distributions](https://vistributions.rsquaredacademy.com/articles/introduction_to_vistributions.html) +- [Explore + Distributions](https://vistributions.rsquaredacademy.com/articles/introduction-to-vistributions.html) ## Usage @@ -47,7 +48,6 @@ vdist_normal_plot() ``` r - # visualize quantiles out of given probability vdist_normal_perc(0.95, mean = 2, sd = 1.36, type = 'both') ``` @@ -55,7 +55,6 @@ vdist_normal_perc(0.95, mean = 2, sd = 1.36, type = 'both') ``` r - # visualize probability from a given quantile vdist_normal_prob(c(-1.74, 1.83), type = 'both') ``` @@ -68,9 +67,3 @@ If you encounter a bug, please file a minimal reproducible example using [reprex](https://reprex.tidyverse.org/index.html) on github. For questions and clarifications, use [StackOverflow](https://stackoverflow.com/). - -## Community Guidelines - -Please note that the ‘vistributions’ project is released with a -[Contributor Code of Conduct](CODE_OF_CONDUCT.md). By contributing to -this project, you agree to abide by its terms. diff --git a/_pkgdown.yml b/_pkgdown.yml index a07ac6b..5bde5f8 100644 --- a/_pkgdown.yml +++ b/_pkgdown.yml @@ -7,6 +7,7 @@ authors: templates: params: bootswatch: cosmo + ganalytics: UA-57270671-33 docsearch: api_key: index_name: vistributions diff --git a/cran-comments.md b/cran-comments.md index 4b837cb..9325a47 100644 --- a/cran-comments.md +++ b/cran-comments.md @@ -1,6 +1,6 @@ ## Test environments -* local Windows 10, R 3.5.2 -* ubuntu 14.04 (on travis-ci), R 3.4.4, R 3.5.2, R devel +* local Windows 10 install, R 4.0.4 +* ubuntu 14.04 (on GitHub Actions), R 4.1.0, R-devel * win-builder (devel and release) ## R CMD check results