wboxplot: wboxplot

Description Usage Arguments Examples

View source: R/MarkdownReportsDev.R

Description

Create and save box plots as .pdf, in "OutDir". 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.

Usage

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
wboxplot(
  yourlist,
  main = as.character(substitute(yourlist)),
  sub = FALSE,
  ylab = "",
  col = unless.specified("b.def.colors", "gold1"),
  incrBottMarginBy = 0,
  tilted_text = FALSE,
  savefile = unless.specified("b.save.wplots"),
  w = unless.specified("b.defSize", 7),
  h = w,
  mdlink = ww.set.mdlink(),
  PNG = unless.specified("b.usepng"),
  ...
)

Arguments

yourlist

The variable to plot.

main

Title of the plot and also the name of the file.

sub

Subtitle below the plot.

ylab

Y axis label

col

Color of the plot.

incrBottMarginBy

Increase the blank space at the bottom of the plot. Use if labels do not fit on the plot.

tilted_text

Use 45 degree x-labels if TRUE. Useful for long, but not too many labels.

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.

...

Pass any other parameter of the corresponding plotting function(most of them should work).

Examples

1
2
3
MyList = list(rnorm(100),rnorm(100)); wboxplot (yourlist = MyList,col = "gold1",
sub = FALSE, incrBottMarginBy = 0,
 tilted_text = FALSE, w = 7, mdlink = FALSE)

vertesy/MarkdownReportsDev documentation built on Nov. 15, 2021, 9:59 a.m.