Skip to content

Commit

Permalink
on cran
Browse files Browse the repository at this point in the history
  • Loading branch information
aravindhebbali committed May 20, 2021
1 parent ff7ad3c commit 57d9a23
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 22 deletions.
5 changes: 2 additions & 3 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -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 = "[email protected]", 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,
Expand All @@ -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
4 changes: 4 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
8 changes: 2 additions & 6 deletions README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ knitr::opts_chunk$set(
<!-- badges: start -->
[![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)
<!-- badges: end -->

## Installation
Expand All @@ -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

Expand All @@ -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.
15 changes: 4 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
<!-- badges: end -->

Expand All @@ -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

Expand All @@ -47,15 +48,13 @@ vdist_normal_plot()
<img src="man/figures/README-normal-1.png" width="100%" />

``` r

# visualize quantiles out of given probability
vdist_normal_perc(0.95, mean = 2, sd = 1.36, type = 'both')
```

<img src="man/figures/README-normal-2.png" width="100%" />

``` r

# visualize probability from a given quantile
vdist_normal_prob(c(-1.74, 1.83), type = 'both')
```
Expand All @@ -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.
1 change: 1 addition & 0 deletions _pkgdown.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ authors:
templates:
params:
bootswatch: cosmo
ganalytics: UA-57270671-33
docsearch:
api_key:
index_name: vistributions
Expand Down
4 changes: 2 additions & 2 deletions cran-comments.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 57d9a23

Please sign in to comment.