Skip to content

Commit 1967b16

Browse files
committed
use https for mc-stan.org links in NEWS and README
1 parent 11d7741 commit 1967b16

File tree

2 files changed

+16
-16
lines changed

2 files changed

+16
-16
lines changed

NEWS.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@
99
* MCMC plots now also accept objects with an `as.array` method as
1010
input. (#175, #184)
1111

12-
* [`mcmc_trace()`](http://mc-stan.org/bayesplot/reference/MCMC-traces.html)
12+
* [`mcmc_trace()`](https://mc-stan.org/bayesplot/reference/MCMC-traces.html)
1313
gains an argument `iter1` which can be used to label the traceplot starting
1414
from the first iteration after warmup. (#14, #155, @mcol)
1515

16-
* [`mcmc_areas()`](http://mc-stan.org/bayesplot/reference/MCMC-intervals.html)
16+
* [`mcmc_areas()`](https://mc-stan.org/bayesplot/reference/MCMC-intervals.html)
1717
gains an argument `area_method` which controls how to draw the density
1818
curves. The default `"equal area"` constrains the heights so that the curves
1919
have the same area. As a result, a narrow interval will appear as a spike
@@ -41,7 +41,7 @@
4141
case where factor-conversion failed. (#162, #165, @wwiecek)
4242

4343
* The examples in
44-
[`?ppc_loo_pit_overlay()`](http://mc-stan.org/bayesplot/reference/PPC-loo.html)
44+
[`?ppc_loo_pit_overlay()`](https://mc-stan.org/bayesplot/reference/PPC-loo.html)
4545
now work as expected. (#166, #167)
4646

4747
* `ppc_bars()` and `ppc_bars_grouped()` now allow negative integers as input. (#172)
@@ -64,29 +64,29 @@
6464
- `bayesplot_theme_replace()`
6565

6666
* The [Visual MCMC Diagnostics
67-
vignette](http://mc-stan.org/bayesplot/articles/visual-mcmc-diagnostics.html)
67+
vignette](https://mc-stan.org/bayesplot/articles/visual-mcmc-diagnostics.html)
6868
has been reorganized and has a lot of useful new content thanks to Martin
6969
Modrák. (#144, #153)
7070

7171
* The [LOO predictive
72-
checks](http://mc-stan.org/bayesplot/reference/PPC-loo.html) now require
72+
checks](https://mc-stan.org/bayesplot/reference/PPC-loo.html) now require
7373
**loo** version `>= 2.0.0`. (#139)
7474

7575
* Histogram plots gain a `breaks` argument that can be used as an alternative
7676
to `binwidth`. (#148)
7777

78-
* [`mcmc_pairs()`](http://mc-stan.org/bayesplot/reference/MCMC-scatterplots.html)
78+
* [`mcmc_pairs()`](https://mc-stan.org/bayesplot/reference/MCMC-scatterplots.html)
7979
now has an argument `grid_args` to provide a way of passing optional
8080
arguments to `gridExtra::arrangeGrob()`. This can be used to add a title to
8181
the plot, for example. (#143)
8282

83-
* [`ppc_ecdf_overlay()`](http://mc-stan.org/bayesplot/reference/PPC-distributions.html)
83+
* [`ppc_ecdf_overlay()`](https://mc-stan.org/bayesplot/reference/PPC-distributions.html)
8484
gains an argument `discrete`, which is `FALSE` by default, but can be used
8585
to make the Geom more appropriate for discrete data. (#145)
8686

8787
* [PPC intervals
88-
plots](http://mc-stan.org/bayesplot/reference/PPC-intervals.html) and [LOO
89-
predictive checks](http://mc-stan.org/bayesplot/reference/PPC-loo.html) now
88+
plots](https://mc-stan.org/bayesplot/reference/PPC-intervals.html) and [LOO
89+
predictive checks](https://mc-stan.org/bayesplot/reference/PPC-loo.html) now
9090
draw both an outer and an inner probability interval, which can be
9191
controlled through the new argument `prob_outer` and the already existing
9292
`prob`. This is consistent with what is produced by `mcmc_intervals()`.
@@ -99,7 +99,7 @@
9999

100100
(GitHub issue/PR numbers in parentheses)
101101

102-
* New package documentation website: <http://mc-stan.org/bayesplot/>
102+
* New package documentation website: <https://mc-stan.org/bayesplot/>
103103

104104
* Two new plots that visualize posterior density using
105105
[ridgelines][ggridges]. These work well when parameters have similar

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
[<img src="https://raw.githubusercontent.com/stan-dev/logos/master/logo_tm.png" width=100 alt="Stan Logo"/>](http://mc-stan.org)
1+
[<img src="https://raw.githubusercontent.com/stan-dev/logos/master/logo_tm.png" width=100 alt="Stan Logo"/>](https://mc-stan.org)
22

33
# bayesplot
44

55
[![Travis-CI Build Status](https://travis-ci.org/stan-dev/bayesplot.svg?branch=master)](https://travis-ci.org/stan-dev/bayesplot)
66
[![codecov](https://codecov.io/gh/stan-dev/bayesplot/branch/master/graph/badge.svg)](https://codecov.io/gh/stan-dev/bayesplot)
7-
[![CRAN_Status_Badge](http://www.r-pkg.org/badges/version/bayesplot?color=blue)](http://cran.r-project.org/web/packages/bayesplot)
8-
[![Downloads](http://cranlogs.r-pkg.org/badges/bayesplot?color=blue)](http://cran.rstudio.com/package=bayesplot)
7+
[![CRAN_Status_Badge](https://www.r-pkg.org/badges/version/bayesplot?color=blue)](https://cran.r-project.org/web/packages/bayesplot)
8+
[![Downloads](https://cranlogs.r-pkg.org/badges/bayesplot?color=blue)](https://cran.rstudio.com/package=bayesplot)
99

1010
**bayesplot** is an R package providing an extensive library of plotting
1111
functions for use after fitting Bayesian models (typically with MCMC). Currently
@@ -22,12 +22,12 @@ The idea behind **bayesplot** is not only to provide convenient functionality
2222
for users, but also a common set of functions that can be easily used by
2323
developers working on a variety of packages for Bayesian modeling, particularly
2424
(but not necessarily) those powered by
25-
[**RStan**](http://mc-stan.org/rstan).
25+
[**RStan**](https://mc-stan.org/rstan).
2626

2727
### Resources
2828

29-
* [mc-stan.org/bayesplot](http://mc-stan.org/bayesplot) (online documentation, vignettes)
30-
* [Ask a question](http://discourse.mc-stan.org) (Stan Forums on Discourse)
29+
* [mc-stan.org/bayesplot](https://mc-stan.org/bayesplot) (online documentation, vignettes)
30+
* [Ask a question](https://discourse.mc-stan.org) (Stan Forums on Discourse)
3131
* [Open an issue](https://github.com/stan-dev/bayesplot/issues) (GitHub issues for bug reports, feature requests)
3232

3333
### Installation

0 commit comments

Comments
 (0)