- formula
a formula of the form y ~ group
where y
is
a numeric variable giving the data values and group
a numeric variable, character variable or factor with two
or more than two values or factor levels giving the
corresponding groups.
- data
a matrix or data frame containing the variables in the
formula formula
.
- method
a character string specifying the method to compute the
center of each group, i.e. method = "median"
(default)
to compute the Levene's test based on the median (aka
Brown-Forsythe test) or method = "mean"
to compute
the Levene's test based on the arithmetic mean.
- conf.level
a numeric value between 0 and 1 indicating the confidence
level of the interval.
- hypo
logical: if TRUE
(default), null and alternative hypothesis
are shown on the console.
- descript
logical: if TRUE
(default), descriptive statistics are shown
on the console.
- plot
logical: if TRUE
, a plot showing violin plots with
boxplots is drawn.
- violin.alpha
a numeric value indicating the opacity of the violins.
- violin.trim
logical: if TRUE
, the tails of the violins to the
range of the data is trimmed.
- box
logical: if TRUE
(default), boxplots are drawn.
- box.alpha
a numeric value indicating the opacity of the boxplots.
- box.width
a numeric value indicating the width of the boxplots.
- jitter
logical: if TRUE
(default), jittered data points
are drawn.
- jitter.size
a numeric value indicating the size
aesthetic
for the jittered data points.
- jitter.width
a numeric value indicating the amount of horizontal jitter.
- jitter.height
a numeric value indicating the amount of vertical jitter.
- jitter.alpha
a numeric value indicating the opacity of the jittered
data points.
- gray
logical: if TRUE
, the plot is drawn in gray scale.
- start
a numeric value between 0 and 1, graphical parameter to
specify the gray value at the low end of the palette.
- end
a numeric value between 0 and 1, graphical parameter to
specify the gray value at the high end of the palette.
- color
a character vector, indicating the color of the violins
and the boxes. By default, default ggplot2 colors are
used.
- xlab
a character string specifying the labels for the x-axis.
- ylab
a character string specifying the labels for the y-axis.
- ylim
a numeric vector of length two specifying limits of the
limits of the y-axis.
- breaks
a numeric vector specifying the points at which tick-marks
are drawn at the y-axis.
- title
a character string specifying the text for the title for
the plot.
- subtitle
a character string specifying the text for the subtitle
for the plot.
- digits
an integer value indicating the number of decimal places
to be used for displaying results.
- p.digits
an integer value indicating the number of decimal places
to be used for displaying the p-value.
- as.na
a numeric vector indicating user-defined missing values,
i.e. these values are converted to NA
before
conducting the analysis.
- write
a character string naming a text file with file extension
".txt"
(e.g., "Output.txt"
) for writing the
output into a text file.
- append
logical: if TRUE
(default), output will be appended
to an existing text file with extension .txt
specified
in write
, if FALSE
existing text file will be
overwritten.
- check
logical: if TRUE
(default), argument specification is checked.
- output
logical: if TRUE
(default), output is shown.