Estimating of parameters in statistical distributions using R. Package provides an implementation of the EM algorithm (Expectation Maximization Algorithm) in the R language. Today, EM and its variants are regularly used to solve a broad range of today’s estimation problems, from the multiple EM for motif elicitation (MEME) algorithm for motif-finding in DNA sequences, to fitting mixture models to disambiguate targets from clutter in radar. Hope that you, too, will find EM useful.
You can see details of usage here.
sepro is a GitHub package so you can use ‘install_github()‘ from devtools package. Install devtools first:
if("devtools" %in% rownames(installed.packages()) == FALSE){
install.packages("devtools")
}
library(devtools)
After that you can install sepro package:
install_github("hdrbv/sepro", ref = "main")
library(sepro)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.