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
|
\name{internals}
\title{Internal Functions}
\alias{internals}
\alias{robMD}
%
%% MM: This page is not *needed*, since all the functions are namespace-hidden
%% -- OTOH, it shows what we might want to export {and then document}
\description{
These functions are for internal use or not yet documented.
}
\usage{
%% for glmrob
\method{print}{glmrob}(x, digits = max(3, getOption("digits") - 3), ...)
glmrobMqle(X, y, weights = NULL, start = NULL, offset = NULL,
family, weights.on.x = "none",
control = glmrobMqle.control(), intercept = TRUE, trace = FALSE)
% 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)
glmrobMqleDiffQuasiDevB (mu, mu0, y, ni, w.x, phi, tcc)
glmrobMqleDiffQuasiDevPois(mu, mu0, y, ni, w.x, phi, tcc)
% rflmFixedScale(x, y, weights, w = rep(1, nrow(x)), init, scale,
% psi = psi.huber, maxit = 20, acc = 1e-04,
% test.vec = "resid", wt.method = "inv.var")
%% 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)
robMD(x, intercept, ...)
}
\author{Andreas Ruckstuhl and Martin Maechler}
\keyword{internal}
|