- df
a matrix or a data.frame. The values of variables (e.g., indices) to be compared are in columns.
- method
pearson
, spearman
or kendall
. This is the method to be used to produce the plot, according to cor.test
. See details.
- digits
Number of digits to round the correlation values on the plot.
- na.action
for controlling the treatment of NAs in spearman
or kendall
plots. If TRUE, missing values in the data are put last; if FALSE, they are put first; if NA, they are removed; if "keep" they are kept with rank NA. See rank
.
- ties.method
average
, first
, random
, max
, or min
; a character string specifying how ties are treated in spearman
or kendall
plots. See rank
for details.
- title
Title of the plot.
- xlab
a character string for labelling x axes. variable.name
(default value) will produce automatic labelling according to column names of df
. Otherwise, either a single string can be entered, or a vector of strings of length equal to the number of columns of df
.
- ylab
a character string for labelling y axes. variable.name
(default value) will produce automatic labelling according to column names of df
. Otherwise, either a single string can be entered, or a vector of strings of length equal to the number of columns of df
.
- ...
Further arguments to be passed to the individual plots. See plot
and par