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

R-CMD-check AppVeyor Build Status Codecov test coverage CRAN_Status_Badge CRAN_Download_Badge Lifecycle: maturing Project Status: Active – The project has reached a stable, usable state and is being actively developed. Licence

EstimationTools

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

Installation

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)

<!-- `r utils::packageVersion("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
install.packages("EstimationTools")

You can visit the package website to explore the functions reference and our vignettes (articles).

Examples

You can visit our estimation vignette to see the examples.



Jaimemosg/EstimationTools documentation built on Oct. 23, 2023, 10 a.m.