- x
an object of class "eba"
, typically generated by the eba
function.
- variables
a character vector that specifies the variables for which histograms are requested. If NULL, histograms for all variables will be produced.
- col
a color to be used to fill the histogram bars. Default is "gray"
.
- freq
logical; if TRUE, the histogram graphic is a representation of frequencies, the counts component of the result; if FALSE, probability densities, component density, are plotted (so that the histogram has a total area of one). Defaults to TRUE if and only if breaks are equidistant (and probability is not specified).
- main
a named character vector that specifies the histogram title labels for the requested variables. The name of the vector component specifies the variable, while the content of the component itself contains the title label. If the vector's components are not named, variables are labelled in the order that they appear in the argument variables
.
- mu.show
logical; if TRUE (default), a vertical line for each variable's regression coefficient value assumed under the null hypothesis (specified by the mu
argument of the eba
function, with a default of 0) will be drawn over the histograms.
- mu.col
a color to be used to draw the vertical line at mu
. Default is "red"
.
- mu.lwd
the line width for vertical line at mu
. Default is 2.
- mu.visible
logical; if TRUE (default), make sure that the histograms' horizontal axes are scaled so that the vertical line at mu
is always visible.
- density.show
logical; if TRUE, a kernel density curve for the regression coefficients' distribution will be drawn over the histograms. The kernel densities are calculated using the standard density
function. Additional arguments can be passed on to the density
function via the density.args
argument.
- density.col
a color to be used to draw the kernel density curve. Default is "blue"
.
- density.lwd
the line width for the kernel density curve. Default is 2.
- density.args
a list of additional arguments that will be passed on to the kernel density
function.
- normal.show
logical; if TRUE, a density curve for the normal distribution function will be drawn over the histograms. For each variable, the distribution's mean and standard error will be the means and standard errors of the corresponding regression coefficients.
- normal.col
a color to be used to draw the normal distribution density curve. Default is "darkgreen"
.
- normal.lwd
the line width for the normal distribution density curve. For more detail, see the documentation for lwd
in par
. Default is 2.
- normal.weighted
logical; If TRUE, the normal distribution density shown by normal.show
will use the weighted mean and standard error, with each regression model's weight specified by eba
's argument weights
. If FALSE (default), the unweighted mean and standard error will be used (i.e., each regression model receives equal weight).
- xlim
the range of x values with sensible defaults.
- ylim
the range of y values with sensible defaults.
- ...
additional arguments that will be passed on to the hist
function that creates the histograms.