Description Usage Arguments Author(s) Examples
plot.RCopy automatically sorts comparison data and generates pre-labeled dotplots.
1 | plot.RCopy(x, count = TRUE, trim = FALSE, ...)
|
x |
|
count |
Plot based on match count OR percent. Default set to "TRUE" for count. FALSE = percent |
trim |
|
... |
Stephanie L. DeMora and Loren Collingwood
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)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.