├── DESCRIPTION ├── MD5 ├── NAMESPACE ├── R ├── BetaMoments.R ├── Burr.R ├── CTE.R ├── ChisqSupp.R ├── ExponentialSupp.R ├── Extract.grouped.data.R ├── FellerPareto.R ├── GammaSupp.R ├── GeneralizedBeta.R ├── GeneralizedPareto.R ├── Gumbel.R ├── InverseBurr.R ├── InverseExponential.R ├── InverseGamma.R ├── InverseGaussian.R ├── InverseParalogistic.R ├── InversePareto.R ├── InverseTransformedGamma.R ├── InverseWeibull.R ├── Logarithmic.R ├── Loggamma.R ├── Loglogistic.R ├── LognormalMoments.R ├── NormalSupp.R ├── Paralogistic.R ├── Pareto.R ├── Pareto2.R ├── Pareto3.R ├── Pareto4.R ├── PhaseType.R ├── PoissonInverseGaussian.R ├── SingleParameterPareto.R ├── TransformedBeta.R ├── TransformedGamma.R ├── UniformSupp.R ├── VaR.R ├── WeibullMoments.R ├── ZeroModifiedBinomial.R ├── ZeroModifiedGeometric.R ├── ZeroModifiedLogarithmic.R ├── ZeroModifiedNegativeBinomial.R ├── ZeroModifiedPoisson.R ├── ZeroTruncatedBinomial.R ├── ZeroTruncatedGeometric.R ├── ZeroTruncatedNegativeBinomial.R ├── ZeroTruncatedPoisson.R ├── adjCoef.R ├── aggregateDist.R ├── bayes.R ├── betaint.R ├── bstraub.R ├── cm.R ├── coverage.R ├── discretize.R ├── elev.R ├── emm.R ├── exact.R ├── grouped.data.R ├── hache.R ├── hache.barycenter.R ├── hache.origin.R ├── hierarc.R ├── hist.grouped.data.R ├── mde.R ├── mean.grouped.data.R ├── normal.R ├── ogive.R ├── panjer.R ├── quantile.aggregateDist.R ├── quantile.grouped.data.R ├── rcomphierarc.R ├── rcomphierarc.summaries.R ├── rcompound.R ├── rmixture.R ├── ruin.R ├── severity.R ├── simS.R ├── unroll.R └── var-methods.R ├── data ├── dental.rda ├── gdental.rda └── hachemeister.rda ├── demo ├── 00Index ├── credibility.R ├── lossdist.R ├── risk.R └── simulation.R ├── inst ├── CITATION ├── NEWS.0.Rd ├── NEWS.1.Rd ├── NEWS.2.Rd ├── NEWS.Rd ├── doc │ ├── actuar.R │ ├── actuar.Rnw │ ├── actuar.pdf │ ├── coverage.R │ ├── coverage.Rnw │ ├── coverage.pdf │ ├── credibility.R │ ├── credibility.Rnw │ ├── credibility.pdf │ ├── distributions.Rnw │ ├── distributions.pdf │ ├── modeling.R │ ├── modeling.Rnw │ ├── modeling.pdf │ ├── risk.R │ ├── risk.Rnw │ ├── risk.pdf │ ├── simulation.R │ ├── simulation.Rnw │ └── simulation.pdf ├── include │ └── actuarAPI.h └── po │ ├── en@quot │ └── LC_MESSAGES │ │ ├── R-actuar.mo │ │ └── actuar.mo │ ├── fr │ └── LC_MESSAGES │ │ ├── R-actuar.mo │ │ └── actuar.mo │ └── it │ └── LC_MESSAGES │ ├── R-actuar.mo │ └── actuar.mo ├── man ├── BetaMoments.Rd ├── Burr.Rd ├── CTE.Rd ├── ChisqSupp.Rd ├── ExponentialSupp.Rd ├── Extract.grouped.data.Rd ├── FellerPareto.Rd ├── GammaSupp.Rd ├── GeneralizedBeta.Rd ├── GeneralizedPareto.Rd ├── Gumbel.Rd ├── InverseBurr.Rd ├── InverseExponential.Rd ├── InverseGamma.Rd ├── InverseGaussian.Rd ├── InverseParalogistic.Rd ├── InversePareto.Rd ├── InverseTransformedGamma.Rd ├── InverseWeibull.Rd ├── Logarithmic.Rd ├── Loggamma.Rd ├── Loglogistic.Rd ├── LognormalMoments.Rd ├── NormalSupp.Rd ├── Paralogistic.Rd ├── Pareto.Rd ├── Pareto2.Rd ├── Pareto3.Rd ├── Pareto4.Rd ├── PhaseType.Rd ├── PoissonInverseGaussian.Rd ├── SingleParameterPareto.Rd ├── TransformedBeta.Rd ├── TransformedGamma.Rd ├── UniformSupp.Rd ├── VaR.Rd ├── WeibullMoments.Rd ├── ZeroModifiedBinomial.Rd ├── ZeroModifiedGeometric.Rd ├── ZeroModifiedLogarithmic.Rd ├── ZeroModifiedNegativeBinomial.Rd ├── ZeroModifiedPoisson.Rd ├── ZeroTruncatedBinomial.Rd ├── ZeroTruncatedGeometric.Rd ├── ZeroTruncatedNegativeBinomial.Rd ├── ZeroTruncatedPoisson.Rd ├── actuar-package.Rd ├── adjCoef.Rd ├── aggregateDist.Rd ├── betaint.Rd ├── cm.Rd ├── coverage.Rd ├── dental.Rd ├── discretize.Rd ├── elev.Rd ├── emm.Rd ├── gdental.Rd ├── grouped.data.Rd ├── hachemeister.Rd ├── hist.grouped.data.Rd ├── mde.Rd ├── mean.grouped.data.Rd ├── ogive.Rd ├── quantile.aggregateDist.Rd ├── quantile.grouped.data.Rd ├── rcomphierarc.Rd ├── rcomphierarc.summaries.Rd ├── rcompound.Rd ├── rmixture.Rd ├── ruin.Rd ├── severity.Rd ├── unroll.Rd └── var-methods.Rd ├── po ├── R-actuar.pot ├── R-fr.po ├── R-it.po ├── actuar.pot ├── fr.po └── it.po ├── src ├── Makevars ├── actuar-win.def ├── actuar.h ├── beta.c ├── betaint.c ├── burr.c ├── chisq.c ├── dpq.c ├── dpq.h ├── dpqphtype.c ├── exp.c ├── fpareto.c ├── gamma.c ├── genbeta.c ├── genpareto.c ├── gumbel.c ├── hierarc.c ├── init.c ├── invburr.c ├── invexp.c ├── invgamma.c ├── invgauss.c ├── invparalogis.c ├── invpareto.c ├── invtrgamma.c ├── invweibull.c ├── lgamma.c ├── llogis.c ├── lnorm.c ├── locale.h ├── logarithmic.c ├── names.c ├── norm.c ├── panjer.c ├── paralogis.c ├── pareto.c ├── pareto1.c ├── pareto2.c ├── pareto3.c ├── pareto4.c ├── phtype.c ├── poisinvgauss.c ├── qDiscrete_search.h ├── random.c ├── randomphtype.c ├── trbeta.c ├── trgamma.c ├── unif.c ├── util.c ├── weibull.c ├── zmbinom.c ├── zmgeom.c ├── zmlogarithmic.c ├── zmnbinom.c ├── zmpois.c ├── ztbinom.c ├── ztgeom.c ├── ztnbinom.c └── ztpois.c ├── tests ├── betaint-tests.R ├── dpqr-tests.R ├── rcompound-tests.R ├── rmixture-tests.R └── var-methods-tests.R └── vignettes ├── Makefile ├── actuar.Rnw ├── actuar.bib ├── coverage.Rnw ├── credibility.Rnw ├── distributions.Rnw ├── framed.sty ├── modeling.Rnw ├── risk.Rnw ├── share └── preamble.tex └── simulation.Rnw /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/MD5 -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/BetaMoments.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/R/BetaMoments.R -------------------------------------------------------------------------------- /R/Burr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/R/Burr.R -------------------------------------------------------------------------------- /R/CTE.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/R/CTE.R -------------------------------------------------------------------------------- /R/ChisqSupp.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/R/ChisqSupp.R -------------------------------------------------------------------------------- /R/ExponentialSupp.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/R/ExponentialSupp.R -------------------------------------------------------------------------------- /R/Extract.grouped.data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/R/Extract.grouped.data.R -------------------------------------------------------------------------------- /R/FellerPareto.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/R/FellerPareto.R -------------------------------------------------------------------------------- /R/GammaSupp.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/R/GammaSupp.R -------------------------------------------------------------------------------- /R/GeneralizedBeta.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/R/GeneralizedBeta.R -------------------------------------------------------------------------------- /R/GeneralizedPareto.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/R/GeneralizedPareto.R -------------------------------------------------------------------------------- /R/Gumbel.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/R/Gumbel.R -------------------------------------------------------------------------------- /R/InverseBurr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/R/InverseBurr.R -------------------------------------------------------------------------------- /R/InverseExponential.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/R/InverseExponential.R -------------------------------------------------------------------------------- /R/InverseGamma.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/R/InverseGamma.R -------------------------------------------------------------------------------- /R/InverseGaussian.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/R/InverseGaussian.R -------------------------------------------------------------------------------- /R/InverseParalogistic.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/R/InverseParalogistic.R -------------------------------------------------------------------------------- /R/InversePareto.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/R/InversePareto.R -------------------------------------------------------------------------------- /R/InverseTransformedGamma.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/R/InverseTransformedGamma.R -------------------------------------------------------------------------------- /R/InverseWeibull.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/R/InverseWeibull.R -------------------------------------------------------------------------------- /R/Logarithmic.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/R/Logarithmic.R -------------------------------------------------------------------------------- /R/Loggamma.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/R/Loggamma.R -------------------------------------------------------------------------------- /R/Loglogistic.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/R/Loglogistic.R -------------------------------------------------------------------------------- /R/LognormalMoments.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/R/LognormalMoments.R -------------------------------------------------------------------------------- /R/NormalSupp.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/R/NormalSupp.R -------------------------------------------------------------------------------- /R/Paralogistic.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/R/Paralogistic.R -------------------------------------------------------------------------------- /R/Pareto.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/R/Pareto.R -------------------------------------------------------------------------------- /R/Pareto2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/R/Pareto2.R -------------------------------------------------------------------------------- /R/Pareto3.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/R/Pareto3.R -------------------------------------------------------------------------------- /R/Pareto4.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/R/Pareto4.R -------------------------------------------------------------------------------- /R/PhaseType.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/R/PhaseType.R -------------------------------------------------------------------------------- /R/PoissonInverseGaussian.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/R/PoissonInverseGaussian.R -------------------------------------------------------------------------------- /R/SingleParameterPareto.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/R/SingleParameterPareto.R -------------------------------------------------------------------------------- /R/TransformedBeta.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/R/TransformedBeta.R -------------------------------------------------------------------------------- /R/TransformedGamma.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/R/TransformedGamma.R -------------------------------------------------------------------------------- /R/UniformSupp.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/R/UniformSupp.R -------------------------------------------------------------------------------- /R/VaR.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/R/VaR.R -------------------------------------------------------------------------------- /R/WeibullMoments.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/R/WeibullMoments.R -------------------------------------------------------------------------------- /R/ZeroModifiedBinomial.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/R/ZeroModifiedBinomial.R -------------------------------------------------------------------------------- /R/ZeroModifiedGeometric.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/R/ZeroModifiedGeometric.R -------------------------------------------------------------------------------- /R/ZeroModifiedLogarithmic.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/R/ZeroModifiedLogarithmic.R -------------------------------------------------------------------------------- /R/ZeroModifiedNegativeBinomial.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/R/ZeroModifiedNegativeBinomial.R -------------------------------------------------------------------------------- /R/ZeroModifiedPoisson.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/R/ZeroModifiedPoisson.R -------------------------------------------------------------------------------- /R/ZeroTruncatedBinomial.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/R/ZeroTruncatedBinomial.R -------------------------------------------------------------------------------- /R/ZeroTruncatedGeometric.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/R/ZeroTruncatedGeometric.R -------------------------------------------------------------------------------- /R/ZeroTruncatedNegativeBinomial.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/R/ZeroTruncatedNegativeBinomial.R -------------------------------------------------------------------------------- /R/ZeroTruncatedPoisson.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/R/ZeroTruncatedPoisson.R -------------------------------------------------------------------------------- /R/adjCoef.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/R/adjCoef.R -------------------------------------------------------------------------------- /R/aggregateDist.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/R/aggregateDist.R -------------------------------------------------------------------------------- /R/bayes.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/R/bayes.R -------------------------------------------------------------------------------- /R/betaint.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/R/betaint.R -------------------------------------------------------------------------------- /R/bstraub.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/R/bstraub.R -------------------------------------------------------------------------------- /R/cm.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/R/cm.R -------------------------------------------------------------------------------- /R/coverage.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/R/coverage.R -------------------------------------------------------------------------------- /R/discretize.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/R/discretize.R -------------------------------------------------------------------------------- /R/elev.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/R/elev.R -------------------------------------------------------------------------------- /R/emm.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/R/emm.R -------------------------------------------------------------------------------- /R/exact.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/R/exact.R -------------------------------------------------------------------------------- /R/grouped.data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/R/grouped.data.R -------------------------------------------------------------------------------- /R/hache.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/R/hache.R -------------------------------------------------------------------------------- /R/hache.barycenter.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/R/hache.barycenter.R -------------------------------------------------------------------------------- /R/hache.origin.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/R/hache.origin.R -------------------------------------------------------------------------------- /R/hierarc.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/R/hierarc.R -------------------------------------------------------------------------------- /R/hist.grouped.data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/R/hist.grouped.data.R -------------------------------------------------------------------------------- /R/mde.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/R/mde.R -------------------------------------------------------------------------------- /R/mean.grouped.data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/R/mean.grouped.data.R -------------------------------------------------------------------------------- /R/normal.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/R/normal.R -------------------------------------------------------------------------------- /R/ogive.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/R/ogive.R -------------------------------------------------------------------------------- /R/panjer.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/R/panjer.R -------------------------------------------------------------------------------- /R/quantile.aggregateDist.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/R/quantile.aggregateDist.R -------------------------------------------------------------------------------- /R/quantile.grouped.data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/R/quantile.grouped.data.R -------------------------------------------------------------------------------- /R/rcomphierarc.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/R/rcomphierarc.R -------------------------------------------------------------------------------- /R/rcomphierarc.summaries.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/R/rcomphierarc.summaries.R -------------------------------------------------------------------------------- /R/rcompound.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/R/rcompound.R -------------------------------------------------------------------------------- /R/rmixture.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/R/rmixture.R -------------------------------------------------------------------------------- /R/ruin.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/R/ruin.R -------------------------------------------------------------------------------- /R/severity.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/R/severity.R -------------------------------------------------------------------------------- /R/simS.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/R/simS.R -------------------------------------------------------------------------------- /R/unroll.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/R/unroll.R -------------------------------------------------------------------------------- /R/var-methods.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/R/var-methods.R -------------------------------------------------------------------------------- /data/dental.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/data/dental.rda -------------------------------------------------------------------------------- /data/gdental.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/data/gdental.rda -------------------------------------------------------------------------------- /data/hachemeister.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/data/hachemeister.rda -------------------------------------------------------------------------------- /demo/00Index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/demo/00Index -------------------------------------------------------------------------------- /demo/credibility.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/demo/credibility.R -------------------------------------------------------------------------------- /demo/lossdist.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/demo/lossdist.R -------------------------------------------------------------------------------- /demo/risk.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/demo/risk.R -------------------------------------------------------------------------------- /demo/simulation.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/demo/simulation.R -------------------------------------------------------------------------------- /inst/CITATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/inst/CITATION -------------------------------------------------------------------------------- /inst/NEWS.0.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/inst/NEWS.0.Rd -------------------------------------------------------------------------------- /inst/NEWS.1.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/inst/NEWS.1.Rd -------------------------------------------------------------------------------- /inst/NEWS.2.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/inst/NEWS.2.Rd -------------------------------------------------------------------------------- /inst/NEWS.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/inst/NEWS.Rd -------------------------------------------------------------------------------- /inst/doc/actuar.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/inst/doc/actuar.R -------------------------------------------------------------------------------- /inst/doc/actuar.Rnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/inst/doc/actuar.Rnw -------------------------------------------------------------------------------- /inst/doc/actuar.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/inst/doc/actuar.pdf -------------------------------------------------------------------------------- /inst/doc/coverage.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/inst/doc/coverage.R -------------------------------------------------------------------------------- /inst/doc/coverage.Rnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/inst/doc/coverage.Rnw -------------------------------------------------------------------------------- /inst/doc/coverage.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/inst/doc/coverage.pdf -------------------------------------------------------------------------------- /inst/doc/credibility.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/inst/doc/credibility.R -------------------------------------------------------------------------------- /inst/doc/credibility.Rnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/inst/doc/credibility.Rnw -------------------------------------------------------------------------------- /inst/doc/credibility.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/inst/doc/credibility.pdf -------------------------------------------------------------------------------- /inst/doc/distributions.Rnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/inst/doc/distributions.Rnw -------------------------------------------------------------------------------- /inst/doc/distributions.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/inst/doc/distributions.pdf -------------------------------------------------------------------------------- /inst/doc/modeling.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/inst/doc/modeling.R -------------------------------------------------------------------------------- /inst/doc/modeling.Rnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/inst/doc/modeling.Rnw -------------------------------------------------------------------------------- /inst/doc/modeling.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/inst/doc/modeling.pdf -------------------------------------------------------------------------------- /inst/doc/risk.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/inst/doc/risk.R -------------------------------------------------------------------------------- /inst/doc/risk.Rnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/inst/doc/risk.Rnw -------------------------------------------------------------------------------- /inst/doc/risk.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/inst/doc/risk.pdf -------------------------------------------------------------------------------- /inst/doc/simulation.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/inst/doc/simulation.R -------------------------------------------------------------------------------- /inst/doc/simulation.Rnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/inst/doc/simulation.Rnw -------------------------------------------------------------------------------- /inst/doc/simulation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/inst/doc/simulation.pdf -------------------------------------------------------------------------------- /inst/include/actuarAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/inst/include/actuarAPI.h -------------------------------------------------------------------------------- /inst/po/en@quot/LC_MESSAGES/R-actuar.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/inst/po/en@quot/LC_MESSAGES/R-actuar.mo -------------------------------------------------------------------------------- /inst/po/en@quot/LC_MESSAGES/actuar.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/inst/po/en@quot/LC_MESSAGES/actuar.mo -------------------------------------------------------------------------------- /inst/po/fr/LC_MESSAGES/R-actuar.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/inst/po/fr/LC_MESSAGES/R-actuar.mo -------------------------------------------------------------------------------- /inst/po/fr/LC_MESSAGES/actuar.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/inst/po/fr/LC_MESSAGES/actuar.mo -------------------------------------------------------------------------------- /inst/po/it/LC_MESSAGES/R-actuar.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/inst/po/it/LC_MESSAGES/R-actuar.mo -------------------------------------------------------------------------------- /inst/po/it/LC_MESSAGES/actuar.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/inst/po/it/LC_MESSAGES/actuar.mo -------------------------------------------------------------------------------- /man/BetaMoments.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/man/BetaMoments.Rd -------------------------------------------------------------------------------- /man/Burr.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/man/Burr.Rd -------------------------------------------------------------------------------- /man/CTE.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/man/CTE.Rd -------------------------------------------------------------------------------- /man/ChisqSupp.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/man/ChisqSupp.Rd -------------------------------------------------------------------------------- /man/ExponentialSupp.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/man/ExponentialSupp.Rd -------------------------------------------------------------------------------- /man/Extract.grouped.data.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/man/Extract.grouped.data.Rd -------------------------------------------------------------------------------- /man/FellerPareto.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/man/FellerPareto.Rd -------------------------------------------------------------------------------- /man/GammaSupp.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/man/GammaSupp.Rd -------------------------------------------------------------------------------- /man/GeneralizedBeta.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/man/GeneralizedBeta.Rd -------------------------------------------------------------------------------- /man/GeneralizedPareto.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/man/GeneralizedPareto.Rd -------------------------------------------------------------------------------- /man/Gumbel.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/man/Gumbel.Rd -------------------------------------------------------------------------------- /man/InverseBurr.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/man/InverseBurr.Rd -------------------------------------------------------------------------------- /man/InverseExponential.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/man/InverseExponential.Rd -------------------------------------------------------------------------------- /man/InverseGamma.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/man/InverseGamma.Rd -------------------------------------------------------------------------------- /man/InverseGaussian.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/man/InverseGaussian.Rd -------------------------------------------------------------------------------- /man/InverseParalogistic.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/man/InverseParalogistic.Rd -------------------------------------------------------------------------------- /man/InversePareto.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/man/InversePareto.Rd -------------------------------------------------------------------------------- /man/InverseTransformedGamma.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/man/InverseTransformedGamma.Rd -------------------------------------------------------------------------------- /man/InverseWeibull.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/man/InverseWeibull.Rd -------------------------------------------------------------------------------- /man/Logarithmic.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/man/Logarithmic.Rd -------------------------------------------------------------------------------- /man/Loggamma.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/man/Loggamma.Rd -------------------------------------------------------------------------------- /man/Loglogistic.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/man/Loglogistic.Rd -------------------------------------------------------------------------------- /man/LognormalMoments.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/man/LognormalMoments.Rd -------------------------------------------------------------------------------- /man/NormalSupp.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/man/NormalSupp.Rd -------------------------------------------------------------------------------- /man/Paralogistic.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/man/Paralogistic.Rd -------------------------------------------------------------------------------- /man/Pareto.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/man/Pareto.Rd -------------------------------------------------------------------------------- /man/Pareto2.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/man/Pareto2.Rd -------------------------------------------------------------------------------- /man/Pareto3.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/man/Pareto3.Rd -------------------------------------------------------------------------------- /man/Pareto4.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/man/Pareto4.Rd -------------------------------------------------------------------------------- /man/PhaseType.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/man/PhaseType.Rd -------------------------------------------------------------------------------- /man/PoissonInverseGaussian.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/man/PoissonInverseGaussian.Rd -------------------------------------------------------------------------------- /man/SingleParameterPareto.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/man/SingleParameterPareto.Rd -------------------------------------------------------------------------------- /man/TransformedBeta.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/man/TransformedBeta.Rd -------------------------------------------------------------------------------- /man/TransformedGamma.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/man/TransformedGamma.Rd -------------------------------------------------------------------------------- /man/UniformSupp.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/man/UniformSupp.Rd -------------------------------------------------------------------------------- /man/VaR.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/man/VaR.Rd -------------------------------------------------------------------------------- /man/WeibullMoments.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/man/WeibullMoments.Rd -------------------------------------------------------------------------------- /man/ZeroModifiedBinomial.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/man/ZeroModifiedBinomial.Rd -------------------------------------------------------------------------------- /man/ZeroModifiedGeometric.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/man/ZeroModifiedGeometric.Rd -------------------------------------------------------------------------------- /man/ZeroModifiedLogarithmic.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/man/ZeroModifiedLogarithmic.Rd -------------------------------------------------------------------------------- /man/ZeroModifiedNegativeBinomial.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/man/ZeroModifiedNegativeBinomial.Rd -------------------------------------------------------------------------------- /man/ZeroModifiedPoisson.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/man/ZeroModifiedPoisson.Rd -------------------------------------------------------------------------------- /man/ZeroTruncatedBinomial.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/man/ZeroTruncatedBinomial.Rd -------------------------------------------------------------------------------- /man/ZeroTruncatedGeometric.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/man/ZeroTruncatedGeometric.Rd -------------------------------------------------------------------------------- /man/ZeroTruncatedNegativeBinomial.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/man/ZeroTruncatedNegativeBinomial.Rd -------------------------------------------------------------------------------- /man/ZeroTruncatedPoisson.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/man/ZeroTruncatedPoisson.Rd -------------------------------------------------------------------------------- /man/actuar-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/man/actuar-package.Rd -------------------------------------------------------------------------------- /man/adjCoef.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/man/adjCoef.Rd -------------------------------------------------------------------------------- /man/aggregateDist.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/man/aggregateDist.Rd -------------------------------------------------------------------------------- /man/betaint.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/man/betaint.Rd -------------------------------------------------------------------------------- /man/cm.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/man/cm.Rd -------------------------------------------------------------------------------- /man/coverage.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/man/coverage.Rd -------------------------------------------------------------------------------- /man/dental.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/man/dental.Rd -------------------------------------------------------------------------------- /man/discretize.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/man/discretize.Rd -------------------------------------------------------------------------------- /man/elev.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/man/elev.Rd -------------------------------------------------------------------------------- /man/emm.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/man/emm.Rd -------------------------------------------------------------------------------- /man/gdental.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/man/gdental.Rd -------------------------------------------------------------------------------- /man/grouped.data.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/man/grouped.data.Rd -------------------------------------------------------------------------------- /man/hachemeister.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/man/hachemeister.Rd -------------------------------------------------------------------------------- /man/hist.grouped.data.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/man/hist.grouped.data.Rd -------------------------------------------------------------------------------- /man/mde.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/man/mde.Rd -------------------------------------------------------------------------------- /man/mean.grouped.data.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/man/mean.grouped.data.Rd -------------------------------------------------------------------------------- /man/ogive.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/man/ogive.Rd -------------------------------------------------------------------------------- /man/quantile.aggregateDist.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/man/quantile.aggregateDist.Rd -------------------------------------------------------------------------------- /man/quantile.grouped.data.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/man/quantile.grouped.data.Rd -------------------------------------------------------------------------------- /man/rcomphierarc.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/man/rcomphierarc.Rd -------------------------------------------------------------------------------- /man/rcomphierarc.summaries.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/man/rcomphierarc.summaries.Rd -------------------------------------------------------------------------------- /man/rcompound.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/man/rcompound.Rd -------------------------------------------------------------------------------- /man/rmixture.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/man/rmixture.Rd -------------------------------------------------------------------------------- /man/ruin.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/man/ruin.Rd -------------------------------------------------------------------------------- /man/severity.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/man/severity.Rd -------------------------------------------------------------------------------- /man/unroll.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/man/unroll.Rd -------------------------------------------------------------------------------- /man/var-methods.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/man/var-methods.Rd -------------------------------------------------------------------------------- /po/R-actuar.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/po/R-actuar.pot -------------------------------------------------------------------------------- /po/R-fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/po/R-fr.po -------------------------------------------------------------------------------- /po/R-it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/po/R-it.po -------------------------------------------------------------------------------- /po/actuar.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/po/actuar.pot -------------------------------------------------------------------------------- /po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/po/fr.po -------------------------------------------------------------------------------- /po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/po/it.po -------------------------------------------------------------------------------- /src/Makevars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/src/Makevars -------------------------------------------------------------------------------- /src/actuar-win.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/src/actuar-win.def -------------------------------------------------------------------------------- /src/actuar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/src/actuar.h -------------------------------------------------------------------------------- /src/beta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/src/beta.c -------------------------------------------------------------------------------- /src/betaint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/src/betaint.c -------------------------------------------------------------------------------- /src/burr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/src/burr.c -------------------------------------------------------------------------------- /src/chisq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/src/chisq.c -------------------------------------------------------------------------------- /src/dpq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/src/dpq.c -------------------------------------------------------------------------------- /src/dpq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/src/dpq.h -------------------------------------------------------------------------------- /src/dpqphtype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/src/dpqphtype.c -------------------------------------------------------------------------------- /src/exp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/src/exp.c -------------------------------------------------------------------------------- /src/fpareto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/src/fpareto.c -------------------------------------------------------------------------------- /src/gamma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/src/gamma.c -------------------------------------------------------------------------------- /src/genbeta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/src/genbeta.c -------------------------------------------------------------------------------- /src/genpareto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/src/genpareto.c -------------------------------------------------------------------------------- /src/gumbel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/src/gumbel.c -------------------------------------------------------------------------------- /src/hierarc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/src/hierarc.c -------------------------------------------------------------------------------- /src/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/src/init.c -------------------------------------------------------------------------------- /src/invburr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/src/invburr.c -------------------------------------------------------------------------------- /src/invexp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/src/invexp.c -------------------------------------------------------------------------------- /src/invgamma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/src/invgamma.c -------------------------------------------------------------------------------- /src/invgauss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/src/invgauss.c -------------------------------------------------------------------------------- /src/invparalogis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/src/invparalogis.c -------------------------------------------------------------------------------- /src/invpareto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/src/invpareto.c -------------------------------------------------------------------------------- /src/invtrgamma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/src/invtrgamma.c -------------------------------------------------------------------------------- /src/invweibull.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/src/invweibull.c -------------------------------------------------------------------------------- /src/lgamma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/src/lgamma.c -------------------------------------------------------------------------------- /src/llogis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/src/llogis.c -------------------------------------------------------------------------------- /src/lnorm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/src/lnorm.c -------------------------------------------------------------------------------- /src/locale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/src/locale.h -------------------------------------------------------------------------------- /src/logarithmic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/src/logarithmic.c -------------------------------------------------------------------------------- /src/names.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/src/names.c -------------------------------------------------------------------------------- /src/norm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/src/norm.c -------------------------------------------------------------------------------- /src/panjer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/src/panjer.c -------------------------------------------------------------------------------- /src/paralogis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/src/paralogis.c -------------------------------------------------------------------------------- /src/pareto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/src/pareto.c -------------------------------------------------------------------------------- /src/pareto1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/src/pareto1.c -------------------------------------------------------------------------------- /src/pareto2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/src/pareto2.c -------------------------------------------------------------------------------- /src/pareto3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/src/pareto3.c -------------------------------------------------------------------------------- /src/pareto4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/src/pareto4.c -------------------------------------------------------------------------------- /src/phtype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/src/phtype.c -------------------------------------------------------------------------------- /src/poisinvgauss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/src/poisinvgauss.c -------------------------------------------------------------------------------- /src/qDiscrete_search.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/src/qDiscrete_search.h -------------------------------------------------------------------------------- /src/random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/src/random.c -------------------------------------------------------------------------------- /src/randomphtype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/src/randomphtype.c -------------------------------------------------------------------------------- /src/trbeta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/src/trbeta.c -------------------------------------------------------------------------------- /src/trgamma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/src/trgamma.c -------------------------------------------------------------------------------- /src/unif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/src/unif.c -------------------------------------------------------------------------------- /src/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/src/util.c -------------------------------------------------------------------------------- /src/weibull.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/src/weibull.c -------------------------------------------------------------------------------- /src/zmbinom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/src/zmbinom.c -------------------------------------------------------------------------------- /src/zmgeom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/src/zmgeom.c -------------------------------------------------------------------------------- /src/zmlogarithmic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/src/zmlogarithmic.c -------------------------------------------------------------------------------- /src/zmnbinom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/src/zmnbinom.c -------------------------------------------------------------------------------- /src/zmpois.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/src/zmpois.c -------------------------------------------------------------------------------- /src/ztbinom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/src/ztbinom.c -------------------------------------------------------------------------------- /src/ztgeom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/src/ztgeom.c -------------------------------------------------------------------------------- /src/ztnbinom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/src/ztnbinom.c -------------------------------------------------------------------------------- /src/ztpois.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/src/ztpois.c -------------------------------------------------------------------------------- /tests/betaint-tests.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/tests/betaint-tests.R -------------------------------------------------------------------------------- /tests/dpqr-tests.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/tests/dpqr-tests.R -------------------------------------------------------------------------------- /tests/rcompound-tests.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/tests/rcompound-tests.R -------------------------------------------------------------------------------- /tests/rmixture-tests.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/tests/rmixture-tests.R -------------------------------------------------------------------------------- /tests/var-methods-tests.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/tests/var-methods-tests.R -------------------------------------------------------------------------------- /vignettes/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/vignettes/Makefile -------------------------------------------------------------------------------- /vignettes/actuar.Rnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/vignettes/actuar.Rnw -------------------------------------------------------------------------------- /vignettes/actuar.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/vignettes/actuar.bib -------------------------------------------------------------------------------- /vignettes/coverage.Rnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/vignettes/coverage.Rnw -------------------------------------------------------------------------------- /vignettes/credibility.Rnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/vignettes/credibility.Rnw -------------------------------------------------------------------------------- /vignettes/distributions.Rnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/vignettes/distributions.Rnw -------------------------------------------------------------------------------- /vignettes/framed.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/vignettes/framed.sty -------------------------------------------------------------------------------- /vignettes/modeling.Rnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/vignettes/modeling.Rnw -------------------------------------------------------------------------------- /vignettes/risk.Rnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/vignettes/risk.Rnw -------------------------------------------------------------------------------- /vignettes/share/preamble.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/vignettes/share/preamble.tex -------------------------------------------------------------------------------- /vignettes/simulation.Rnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/actuar/HEAD/vignettes/simulation.Rnw --------------------------------------------------------------------------------