downweightedTable.cgOneFactorFit {cg} | R Documentation |
Create a table of downweighted observations from a Resistant & Robust fit.
Description
Create a table of downweighted observations based on a rrfit object within a cgOneFactorFit object. A cgOneFactorDownweightedTable class object is created.
Usage
## S4 method for signature 'cgOneFactorFit'
downweightedTable(fit, cutoffwt, display="print", ...)
Arguments
fit |
A fit object of class |
cutoffwt |
It has no default and must be specified as a numeric between 0 and 1
exclusive. It is a threshold. All
observations that fall beneath the threshold will be
identified. For example, a |
display |
One of three valid values:
|
... |
Additional arguments. None are currently defined for this method. |
Details
If no observations meet the cutoff criteria, a text message of the
cgOneFactorDownweightedTable
content emptiness is output
instead.
The reported weights are in the scale of the observation, not the
sum of squared errors representation for the likelihood. Thus they are
derived from the square root of the $w
component from
a MASS::rlm
fit object.
Value
An object of class cgOneFactorDownweightedTable
, with the
following slots:
contents
A data frame where each row is an observation from the fitted data set that meets the cutoff criteria, and these columns:
group
The group identified from the fitted data.
endpoint
The observed response value.
weight
The weight associated to the observation from the resistant / robust fit.
pct down-weighted
An expression of the weight in terms of percent reduction from the maximum of 1.
If no observations meet the cutoff criteria, the
contents
slot is set toNULL
.cutoffwt
Taken from the specified
cutoffwt
argument value.settings
A list of settings carried from the
cgOneFactorFit
object, and the addition of the specifiedcutoffwt
argument in the method call above. These are used for theprint.cgOneFactorDownweightedTable
method, invoked for example whendisplay="print"
.
Note
Contact cg@billpikounis.net for bug reports, questions, concerns, and comments.
Author(s)
Bill Pikounis [aut, cre, cph], John Oleynick [aut], Eva Ye [ctb]
References
Venables, W. N. and Ripley, B. D. (2002), Modern Applied Statistics with S. Fourth edition. Springer.
See Also
cgOneFactorFit
, MASS::rlm
Examples
data(canine)
canine.data <- prepareCGOneFactorData(canine, format="groupcolumns",
analysisname="Canine",
endptname="Prostate Volume",
endptunits=expression(plain(cm)^3),
digits=1, logscale=TRUE, refgrp="CC")
canine.fit <- fit(canine.data)
canine.dwtable <- downweightedTable(canine.fit, cutoff=0.95)
downweightedTable(canine.fit, cutoff=0.75) ## No observation
## downweighted at least 25%