Description Usage Arguments Details Value Note Author(s) References See Also Examples
Create a table of downweighted observations based on a rrfit object within a cgOneFactorFit object. A cgOneFactorDownweightedTable class object is created.
1 2 | ## S4 method for signature 'cgOneFactorFit'
downweightedTable(fit, cutoffwt, display="print", ...)
|
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. |
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.
An object of class cgOneFactorDownweightedTable, with the
following slots:
contentsA data frame where each row is an observation from the fitted data set that meets the cutoff criteria, and these columns:
groupThe group identified from the fitted data.
endpointThe observed response value.
weightThe weight associated to the observation from the resistant / robust fit.
pct down-weightedAn 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 to NULL.
cutoffwtTaken from the specified cutoffwt argument
value.
settingsA list of settings carried from the
cgOneFactorFit object, and the addition
of the specified cutoffwt argument in the method call above. These are used
for the print.cgOneFactorDownweightedTable method,
invoked for example when
display="print".
Contact cg@billpikounis.net for bug reports, questions, concerns, and comments.
Bill Pikounis [aut, cre, cph], John Oleynick [aut], Eva Ye [ctb]
Venables, W. N. and Ripley, B. D. (2002), Modern Applied Statistics with S. Fourth edition. Springer.
cgOneFactorFit, MASS::rlm
1 2 3 4 5 6 7 8 9 10 11 12 | 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%
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.