plot.RCopy: plot.RCopy

Description Usage Arguments Author(s) Examples

Description

plot.RCopy automatically sorts comparison data and generates pre-labeled dotplots.

Usage

1
plot.RCopy(x, count = TRUE, trim = FALSE, ...)

Arguments

x
count

Plot based on match count OR percent. Default set to "TRUE" for count. FALSE = percent

trim
...

Author(s)

Stephanie L. DeMora and Loren Collingwood

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
### Prepare example data here
dir <- system.file("extdata", package="RCopyFind")
match_dat<- (html_to_df(file_name(dir)))

#### Plot, Defaults -- Overall Counts, No trim; set cex here
plot(match_dat, cex=.4)

#### Plot, Overall Counts, trimmed #
plot(match_dat, cex=.4, trim=T)

#### Plot, Overall Percent Match
plot(match_dat, cex=.4, count=F)

#### Plot, Overall Percent Match, trimmed
plot(match_dat, cex=.4, count=F, trim=T)

SDeMora/RCopyFind documentation built on June 9, 2019, 11:43 a.m.