Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Documentation #2

Merged
merged 24 commits into from
Nov 14, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
f208924
Included nloptApi.h and CXX11 in the flags plus adapted the code to t…
simonsays1980 Aug 11, 2021
463a6c0
Removed dynamic loading of NloptC, recompiled RcppExports and changed…
simonsays1980 Aug 18, 2021
ee3f376
Changed all file endings from .cc to .cpp. Furthermore, changed the p…
simonsays1980 Aug 19, 2021
68e5394
Made a longer check on the relabeling algorithms of Stephens1997b and…
simonsays1980 Sep 1, 2021
ddb699b
Tested Stephens1997a again as results are very often identical to the…
simonsays1980 Sep 3, 2021
73eee2b
Added another package to the DESCRIPTION file.
simonsays1980 Sep 10, 2021
5e98ed9
Ran beautifier over C++ code (uncrustify) and styler over R code.
simonsays1980 Sep 10, 2021
4117468
Modified DESCRIPTION file. Only the License is missing.
simonsays1980 Sep 10, 2021
d566f4a
Fixed some bugs after running R CMD check.
simonsays1980 Sep 11, 2021
659bcb1
Started documentation
simonsays1980 Oct 5, 2021
005ec1d
Fixed a bug in subseq()
simonsays1980 Oct 5, 2021
41a4d08
Fixed bugs that occurred during R CMD check in the examples.
simonsays1980 Oct 6, 2021
192b2e8
Fixed some bugs and aggregated the documentation of mcmcoutputperm cl…
simonsays1980 Oct 7, 2021
1f30e53
Fixed some bugs and modified the manuals.
simonsays1980 Oct 12, 2021
cd6f14b
Modified manuals to avoid warnings in R CMD check
simonsays1980 Oct 16, 2021
9988b26
Changed some Rd files
simonsays1980 Oct 18, 2021
e509f98
Changed the documentation and fixed some bugs in the examples.
simonsays1980 Oct 21, 2021
f9b2914
Modified documentation to remove WARNINGS in R CMD check
simonsays1980 Oct 30, 2021
969f0ca
Modified the generics and set exported functions to @keywords interna…
simonsays1980 Nov 2, 2021
7bcbc91
Fixed some bugs in the documentation.
simonsays1980 Nov 3, 2021
0a32344
Fixed some warnings in the documentation.
simonsays1980 Nov 6, 2021
49fe96f
Fixed documentation on generics and some methods. devtools::check() r…
simonsays1980 Nov 7, 2021
de8d05f
Added .registration=TRUE to try out what it does.
simonsays1980 Nov 8, 2021
030d4c5
Changed inheritance to non-virtual in ParStudentInd.h
simonsays1980 Nov 11, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@
# Example code in package build process
*-Ex.R

# Object files from R CMD INSTALL
*.o

# Shared libraries from R CMD INSTALL
*.so

# Output files from R CMD build
/*.tar.gz

Expand Down
45 changes: 34 additions & 11 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,17 +1,38 @@
Package: finmix
Type: Package
Title: Gibbs sampling for finite mixture distributions.
Version: 0.1
Date: 2013-07-05
Title: An R package for Bayesian estimation of finite mixture distributions
Version: 0.1.0
Date: 2021-09-10
Author: Lars Simon Zehnder
Maintainer: Lars Simon Zehnder <simon.zehnder@gmail.com>
Description: More about what it does (maybe more than one line)
Maintainer: Lars Simon Zehnder <simon.zehnder@neway.ai>
Description: An R package for Bayesian estimation of finite mixture
distributions. The package uses heavily C++ code to enable high performance
MCMC sampling. Each distribution comes along with some support functions
that create needed objects and start parameters. The following mixtures are
available: Poisson, Binomial, Exponential, Normal, Multivariate Normal,
Student-t, and Multivariate Student-t.
License: GPL (>= 3)
Depends: Rcpp (>= 0.10.2), RcppArmadillo (>= 0.3.6.2), graphics,
mvtnorm (>= 0.9-7), KernSmooth (>= 2.23.10), dfoptim(>= 2011.8.1)
Imports: Rcpp (>= 0.11.4), graphics, mvtnorm (>= 0.9-7), KernSmooth (>= 0.3.6.2)
Suggests: RUnit
LinkingTo: Rcpp, RcppArmadillo
SystemRequirements: C++11
Encoding: UTF-8
Roxygen: list(markdown = TRUE)
Depends:
R (>= 3.0.2)
Imports:
Rcpp (>= 1.0.7),
RcppArmadillo (>= 0.10.6),
methods,
stats,
graphics,
mvtnorm,
KernSmooth,
nloptr (>= 1.2.0),
dfoptim
LinkingTo:
Rcpp (>= 1.0.7),
RcppArmadillo (>= 0.10.6),
nloptr (>= 1.2.0)
Extends:
bayespin
Collate:
AllGenerics.R
graphic_func.R
Expand Down Expand Up @@ -53,8 +74,10 @@ Collate:
mcmcoutputhierpost.R
mixturemcmc.R
mcmcpermfix.R
mcmcpermfixhier.R
mcmcpermfixpost.R
mcmcpermind.R
mcmcpermindhier.R
mcmcpermindpost.R
mcmcoutputpermfix.R
mcmcoutputpermfixhier.R
Expand All @@ -69,4 +92,4 @@ Collate:
mcmcestfix.R
mcmcestind.R
mcmcestimate.R

RoxygenNote: 7.1.1
Loading