Add new packages installed

This commit is contained in:
Mateus Pinto Rodrigues
2018-03-27 20:52:59 -03:00
parent e684741609
commit 2362e805bd
1493 changed files with 172412 additions and 4636 deletions

View File

@@ -0,0 +1,24 @@
### Go inside the "preamble" section and type C-e C-e C-r (ess-roxy-preview-Rd)
### to get an R error message about 'col(m)' --> there's a buglet somewhere
##' Computes different parameter estimates for foo bars and variations
##'
##' @title Estimation procedures for Foo Bar
##' @param x data matrix
##' @param op object to be estimated
##' @param method estimation method; can be
##' "mle" MLE
##' "smle" SMLE
##' "dmle" MLE based on the diagonal
##' "mde.normal" minimum distance estimation based on the chisq distribution and CvM distance
##' "mde.log" minimum distance estimation based on the Erlang distribution and CvM distance
##' "tau.tau.mean" averaged pairwise Kendall's tau estimator
##' "tau.theta.mean" average of Kendall's tau estimators
##' "beta" multivariate Blomqvist's beta estimator
##' @return estimated value/vector according to the chosen method
##' @author Foo Bar
estimateFoo <- function(x, op, method=c("mle", "smle", "dmle", "mde.normal", "mde.log",
"tau.tau.mean", "tau.theta.mean", "beta"))
{
....
}