An open API service indexing awesome lists of open source software.

https://github.com/jaimemosg/estimationtools

This package provides routines for parameter estimation and model diagnostics for any probability density or mass function implemented in R via maximum likelihood given a data set, with or without covariates. Tools in this package have general applicability, especially in survival analysis and distance sampling. :mag::computer:
https://github.com/jaimemosg/estimationtools

distance-sampling maximum-likelihood-estimation r r-package rstats ttt-plot

Last synced: 8 months ago
JSON representation

This package provides routines for parameter estimation and model diagnostics for any probability density or mass function implemented in R via maximum likelihood given a data set, with or without covariates. Tools in this package have general applicability, especially in survival analysis and distance sampling. :mag::computer:

Awesome Lists containing this project

README

          

---
output:
github_document:
pandoc_args: --webtex
---

```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```

[![R-CMD-check](https://github.com/Jaimemosg/EstimationTools/workflows/R-CMD-check/badge.svg)](https://github.com/Jaimemosg/EstimationTools/actions)
[![AppVeyor Build Status](https://ci.appveyor.com/api/projects/status/github/Jaimemosg/EstimationTools?branch=master&svg=true)](https://ci.appveyor.com/project/Jaimemosg/EstimationTools)
[![Codecov test coverage](https://codecov.io/gh/Jaimemosg/EstimationTools/branch/master/graph/badge.svg)](https://app.codecov.io/gh/Jaimemosg/EstimationTools?branch=master)
[![CRAN\_Status\_Badge](http://www.r-pkg.org/badges/version-ago/EstimationTools)](https://cran.r-project.org/package=EstimationTools)
[![CRAN\_Download\_Badge](http://cranlogs.r-pkg.org/badges/EstimationTools)](https://cran.r-project.org/package=EstimationTools)
[![Lifecycle: maturing](https://img.shields.io/badge/lifecycle-maturing-blue.svg)](https://lifecycle.r-lib.org/articles/stages.html#maturing)
[![Project Status: Active – The project has reached a stable, usable state and is being actively developed.](https://www.repostatus.org/badges/latest/active.svg)](https://www.repostatus.org/#active)
[![Licence](https://img.shields.io/badge/licence-GPL--3-blue.svg)](https://www.gnu.org/licenses/gpl-3.0.en.html)

# EstimationTools

The goal of `EstimationTools` is to provide tools and routines for maximum likelihood estimation of probability density/mass functions in `R`.

## Installation

```{r, echo=FALSE, message=FALSE, warning=FALSE, include=FALSE}
file <- readtext::readtext('DESCRIPTION')
text <- file$text
mysubstring <- regmatches(text, gregexpr("\nVersion:(.+)\n", text, perl = TRUE))
split1 <- strsplit(mysubstring[[1]], split = '\n')
split2 <- strsplit(split1[[1]][2], split = ' ')
myversion <- split2[[1]][2]
```

You can install the latest version (`r myversion`) of `EstimationTools` typing the following command lines
in `R` console:

``` {r eval=FALSE}
if (!require('devtools')) install.packages('devtools')
devtools::install_github('Jaimemosg/EstimationTools', force = TRUE)
library(EstimationTools)
```

Or you can install the released version (4.0.0) from [CRAN](https://cran.r-project.org/package=EstimationTools) if you prefer. You can also type the following command lines
in `R` console:

```{r eval=FALSE}
install.packages("EstimationTools")
```

You can visit the [package website](https://Jaimemosg.github.io/EstimationTools/) to explore the functions reference and our vignettes (articles).

## Examples
You can visit our estimation [vignette](https://jaimemosg.github.io/EstimationTools/articles/Examples.html) to see the examples.