Skip to content

Commit 799ccca

Browse files
committed
Version 0.4.1
1 parent 2475911 commit 799ccca

File tree

6 files changed

+28
-27
lines changed

6 files changed

+28
-27
lines changed

.Rbuildignore

+1
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,4 @@
1212
^docs$
1313
^pkgdown$
1414
^\.github$
15+
^CRAN-SUBMISSION$

CRAN-SUBMISSION

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Version: 0.4.1
2+
Date: 2023-03-10 11:19:55 UTC
3+
SHA: 2475911ff75ad7f043eae9834d3ad7073925b3d2

DESCRIPTION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package: dirichletprocess
22
Type: Package
33
Title: Build Dirichlet Process Objects for Bayesian Modelling
4-
Version: 0.4.0.9000
4+
Version: 0.4.1
55
Authors@R: c(
66
person("Gordon", "J. Ross", email="gordon@gordonjross.co.uk", role=c("aut")),
77
person("Dean", "Markwick", email="dean.markwick@talk21.com", role=c("aut", "cre")),

README.Rmd

+10-10
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ knitr::opts_chunk$set(
1919

2020
[![R build status](https://github.com/dm13450/dirichletprocess/workflows/R-CMD-check/badge.svg)](https://github.com/dm13450/dirichletprocess/actions)
2121
[![AppVeyor Build Status](https://ci.appveyor.com/api/projects/status/github/dm13450/dirichletprocess?branch=master&svg=true)](https://ci.appveyor.com/project/dm13450/dirichletprocess)
22-
[![Coverage Status](https://codecov.io/gh/dm13450/dirichletprocess/branch/master/graph/badge.svg)](https://codecov.io/gh/dm13450/dirichletprocess)
22+
[![Coverage Status](https://codecov.io/gh/dm13450/dirichletprocess/branch/master/graph/badge.svg)](https://app.codecov.io/gh/dm13450/dirichletprocess)
2323

2424

2525
The dirichletprocess package provides tools for you to build custom Dirichlet process mixture models. You can use the pre-built Normal/Weibull/Beta distributions or create your own following the instructions in the vignette. In as little as four lines of code you can be modelling your data nonparametrically.
@@ -81,16 +81,16 @@ For more detailed explanations and examples see the vignette.
8181

8282
I've written a number of tutorials:
8383

84-
* [Non parametric priors](http://dm13450.github.io/2019/02/22/Nonparametric-Prior.html)
85-
* [Calculating cluster probabilities](http://dm13450.github.io/2018/11/21/Cluster-Probabilities.html)
86-
* [Clustering](http://dm13450.github.io/2018/05/30/Clustering.html)
87-
* [Point processes](http://dm13450.github.io/2018/03/08/dirichletprocess-pointprocess.html)
88-
* [Custom mixtures](http://dm13450.github.io/2018/02/21/Custom-Distributions-Conjugate.html)
89-
* [Density estimation](http://dm13450.github.io/2018/02/01/Dirichlet-Density.html)
90-
* [Checking convergence](http://dm13450.github.io/2020/01/11/Dirichlet-Convergence.html)
84+
* [Non parametric priors](https://dm13450.github.io/2019/02/22/Nonparametric-Prior.html)
85+
* [Calculating cluster probabilities](https://dm13450.github.io/2018/11/21/Cluster-Probabilities.html)
86+
* [Clustering](https://dm13450.github.io/2018/05/30/Clustering.html)
87+
* [Point processes](https://dm13450.github.io/2018/03/08/dirichletprocess-pointprocess.html)
88+
* [Custom mixtures](https://dm13450.github.io/2018/02/21/Custom-Distributions-Conjugate.html)
89+
* [Density estimation](https://dm13450.github.io/2018/02/01/Dirichlet-Density.html)
90+
* [Checking convergence](https://dm13450.github.io/2020/01/11/Dirichlet-Convergence.html)
9191

9292
and some case studies:
9393

94-
* [State of the Market - Infinite State Hidden Markov Models](http://dm13450.github.io/2020/06/03/State-of-the-Market.html)
95-
* [Palmer Penguins and an Introduction to Dirichlet Processes](http://dm13450.github.io/2020/09/28/PriorToPosterior.html)
94+
* [State of the Market - Infinite State Hidden Markov Models](https://dm13450.github.io/2020/06/03/State-of-the-Market.html)
95+
* [Palmer Penguins and an Introduction to Dirichlet Processes](https://dm13450.github.io/2020/09/28/PriorToPosterior.html)
9696

README.md

+10-10
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ status](https://github.com/dm13450/dirichletprocess/workflows/R-CMD-check/badge.
88
[![AppVeyor Build
99
Status](https://ci.appveyor.com/api/projects/status/github/dm13450/dirichletprocess?branch=master&svg=true)](https://ci.appveyor.com/project/dm13450/dirichletprocess)
1010
[![Coverage
11-
Status](https://codecov.io/gh/dm13450/dirichletprocess/branch/master/graph/badge.svg)](https://codecov.io/gh/dm13450/dirichletprocess)
11+
Status](https://codecov.io/gh/dm13450/dirichletprocess/branch/master/graph/badge.svg)](https://app.codecov.io/gh/dm13450/dirichletprocess)
1212

1313
The dirichletprocess package provides tools for you to build custom
1414
Dirichlet process mixture models. You can use the pre-built
@@ -76,22 +76,22 @@ For more detailed explanations and examples see the vignette.
7676
I’ve written a number of tutorials:
7777

7878
- [Non parametric
79-
priors](http://dm13450.github.io/2019/02/22/Nonparametric-Prior.html)
79+
priors](https://dm13450.github.io/2019/02/22/Nonparametric-Prior.html)
8080
- [Calculating cluster
81-
probabilities](http://dm13450.github.io/2018/11/21/Cluster-Probabilities.html)
82-
- [Clustering](http://dm13450.github.io/2018/05/30/Clustering.html)
81+
probabilities](https://dm13450.github.io/2018/11/21/Cluster-Probabilities.html)
82+
- [Clustering](https://dm13450.github.io/2018/05/30/Clustering.html)
8383
- [Point
84-
processes](http://dm13450.github.io/2018/03/08/dirichletprocess-pointprocess.html)
84+
processes](https://dm13450.github.io/2018/03/08/dirichletprocess-pointprocess.html)
8585
- [Custom
86-
mixtures](http://dm13450.github.io/2018/02/21/Custom-Distributions-Conjugate.html)
86+
mixtures](https://dm13450.github.io/2018/02/21/Custom-Distributions-Conjugate.html)
8787
- [Density
88-
estimation](http://dm13450.github.io/2018/02/01/Dirichlet-Density.html)
88+
estimation](https://dm13450.github.io/2018/02/01/Dirichlet-Density.html)
8989
- [Checking
90-
convergence](http://dm13450.github.io/2020/01/11/Dirichlet-Convergence.html)
90+
convergence](https://dm13450.github.io/2020/01/11/Dirichlet-Convergence.html)
9191

9292
and some case studies:
9393

9494
- [State of the Market - Infinite State Hidden Markov
95-
Models](http://dm13450.github.io/2020/06/03/State-of-the-Market.html)
95+
Models](https://dm13450.github.io/2020/06/03/State-of-the-Market.html)
9696
- [Palmer Penguins and an Introduction to Dirichlet
97-
Processes](http://dm13450.github.io/2020/09/28/PriorToPosterior.html)
97+
Processes](https://dm13450.github.io/2020/09/28/PriorToPosterior.html)

cran-comments.md

+3-6
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,12 @@
1-
-dirichletprocess 0.4.0
1+
-dirichletprocess 0.4.1
22
-----------------------
33

44

55

66
## Changes
77
In this version I have:
88

9-
* Hierarchical Normal Models added by Giovanni Sighinolfi
10-
* Added Giovanni Sighinolfi as a contributor.
11-
* Added params chain to Hidden Markov Models
12-
* Updated the vignette for hierarchical normal models.
9+
* Changed the MhParameterProposal function signature to be consistent.
1310

1411

1512
## Test environments
@@ -19,7 +16,7 @@ In this version I have:
1916

2017
## R CMD check results
2118

22-
0 errors | 0 warnings | 1 note
19+
0 errors | 0 warnings | 0 note
2320

2421
* This is a new release.
2522

0 commit comments

Comments
 (0)