Description Usage Arguments Examples
View source: R/MarkdownReportsDev.R
Create and save violin plots as .pdf, in "OutDir". It requires (and calls) "vioplot" package. If mdlink = TRUE, it inserts a .pdf and a .png link in the markdown report, set by "path_of_report". The .png version is not created, only the link is put in place, not to overwrite previous versions.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | wviostripchart_list(
yourlist,
...,
pch = 20,
viocoll = c(2:(length(yourlist) + 1)),
vioborder = 1,
bg = 1,
col = 1,
metod = "jitter",
jitter = 0.25,
main = as.character(substitute(yourlist)),
sub = NULL,
xlab = names(yourlist),
ylab = "",
incrBottMarginBy = 0,
savefile = unless.specified("b.save.wplots"),
w = unless.specified("b.defSize", 7),
h = w,
mdlink = ww.set.mdlink(),
PNG = unless.specified("b.usepng", F)
)
|
yourlist |
Input list to be plotted. |
... |
Pass any other parameter of the corresponding plotting function(most of them should work). |
pch |
Define the symbol for each data point. A number 0-25 or any string between ""-s. |
viocoll |
Background color of each individual violing plot. |
vioborder |
Border color of each individual violing plot. |
bg |
Background color. |
col |
Color of the plot. |
metod |
Method for displaying data points to avoid overlap; either"jitter" or "stack". See stripchart(). |
jitter |
The amount of horizontal scatter added to the individual data points (to avoid overlaps). |
main |
Title of the plot (main parameter) and also the name of the file. |
sub |
Subtitle below the plot. |
xlab |
X-axis label. |
ylab |
Y-axis label. |
incrBottMarginBy |
Increase the blank space at the bottom of the plot. Use if labels do not fit on the plot. |
savefile |
Save plot as pdf in OutDir, TRUE by default. |
w |
Width of the saved pdf image, in inches. |
h |
Height of the saved pdf image, in inches. |
mdlink |
Insert a .pdf and a .png image link in the markdown report, set by "path_of_report". |
PNG |
Set to true if you want to save the plot as PNG instead of the default PDF. |
1 2 3 |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.