plot.mycor: Plot for an object of class "mycor"

Description Usage Arguments Examples

View source: R/mycorr1.R

Description

Plot for an object of class "mycor"

Usage

1
2
## 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

1
2
3
4
5
6
7
8
 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)

mycor documentation built on May 2, 2019, 2:12 p.m.