1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
|
\name{robustbase-internals}
\title{Internal Functions of Package 'robustbase'}
%% Formality: everything in \usage{} "needs" \alias{}
\alias{internals}
%
\alias{print.glmrob}
\alias{glmrobMqle}
\alias{glmrobMqleDiffQuasiDevB}
\alias{glmrobMqleDiffQuasiDevPois}
%
\alias{robMD}
\alias{mahalanobisD}
%
\alias{doScale}
\alias{.signflip}
%
\description{
These functions are for internal use \emph{or} not yet documented.
}
\usage{
\method{print}{glmrob}(x, digits = max(3, getOption("digits") - 3), ...)
%% MM: These are not *needed*, since they are namespace-hidden
%% -- OTOH, it shows what we might want to export {and then document}
glmrobMqle(X, y, weights = NULL, start = NULL, offset = NULL,
family, weights.on.x = "none",
control = glmrobMqle.control(), intercept = TRUE, trace = FALSE)
glmrobMqleDiffQuasiDevB (mu, mu0, y, ni, w.x, phi, tcc)
glmrobMqleDiffQuasiDevPois(mu, mu0, y, ni, w.x, phi, tcc)
%%--------From here on, are exported (and MM would want minimal doc, evt.) ------
robMD(x, intercept, wqr, ...)
mahalanobisD(x, center, sd)
## Utilities currently for the deterministic MCD only:
## subject to change / be renamed ?
doScale(x, center, scale)
.signflip(loadings)
}
% glmrobMqleEpsiB (mu, Vmu, ni, H, K, tcc)
% glmrobMqleEpsiPois (mu, Vmu, ni, H, K, tcc)
% glmrobMqleEpsiSB (mu, Vmu, ni, H, K, tcc)
% glmrobMqleEpsiSPois (mu, Vmu, ni, H, K, tcc)
% glmrobMqleEpsi2B (mu, Vmu, ni, H, K, tcc)
% glmrobMqleEpsi2Pois (mu, Vmu, ni, H, K, tcc)
%% For modsel.* aka anova.glmrob(); later for nlrob() only;
%% eliminated, 2013-07-26 {for robustbase 0.9-11}, MM :
%% psi.bisquare(u, c = 4.685, deriv = 0, rho = FALSE)
%% psi.hampel(u, a = 2, b = 4, c = 8, deriv = 0, rho = FALSE)
%% psi.huber(u, k = 1.345, deriv = 0, rho = FALSE)
\keyword{internal}
|