plot.mycor {mycor}R Documentation

Plot for an object of class "mycor"

Description

Plot for an object of class "mycor"

Usage

## S3 method for class 'mycor'
plot(x, ..., groups = -1, type = 1)

Arguments

x

an object of class "mycor"

...

further arguments to be passed to pairs or parallelplot(in case of "type" argument is 4).

groups

a variable to be evaluated in a data.frame x$df, expected to act as a grouping variable within each panel, typically used to distinguish different groups by varying graphical parameters like color and line type.

type

specify the type of plot

Examples

 out=mycor(iris)
 plot(out)
 plot(out, groups=Species)
 plot(out,type=2,groups=species)
 out1=mycor(mtcars[1:5],alternative="greater",methods="kendall",
            conf.level=0.95)
 plot(out1,type=3)
 plot(out1,type=4,groups=cyl)

[Package mycor version 0.1.1 Index]