The `summary` and `plot` methods outlined here support the quick description of an `DepSearch` object.
# S3 method for DepSearch
summary(object, ..., adjustP = FALSE)# S3 method for DepSearch
print(x, ...)
# S3 method for DepSearch
plot(
x,
...,
which = 1:5,
border = "black",
buffer = 0.01,
dropPoints = FALSE,
colrng = c("steelblue", "white", "firebrick"),
nbr = NA,
pch = "."
)
Nothing for the plot method, while summary quietly returns a summary of `DepSearch`
`DepSearch` object to summarize
additional arguments to pass on to the method
logical: should the p-values be adjusted for multiple testing?
object with class `DepSearch`
indices of binnings to display from `x`, where binnings are ordered by increasing p-value
colour of borders to be drawn on the binnings
relative width of empty space separating categories
logical: should points be dropped for the plot of the binnings?
colour range to be passed to `residualFill` for plotting
number of breaks to be passed to `residualFill` for plotting
point type passed to plot
summary(DepSearch)
: Summary method for `DepSearch`
print(DepSearch)
: Print method for `DepSearch`
plot(DepSearch)
: Plot method for `DepSearch`
Chris Salahub
Methods
For each index in `which`, this function produces a row of three plots. The first plot is the raw data, the second plot is the ranks of the data, and the final plot is the binning contained in the `DepSearch` object.