Skip to contents

Method of insert function

Usage

# S3 method for class 'leem'
insert(
  x,
  type = "mean",
  lty = 1,
  lcol = "black",
  tcol = lcol,
  acol = lcol,
  parrow = 0.5,
  larrow = 0.6,
  ptext = 0.06,
  side = "right",
  lwd = 2,
  lwdarrow = lwd,
  ...
)

Arguments

x

R object (list) of class leem. Use new_leem() function.

type

Type of measure of position. The default is type = "mean". Other options: "median", "mode" or "all".

lty

Line type. The default is lty = 1.

lcol

Vertical line color type. The default is lpcol = "black". This argument must be the same length as the type argument.

tcol

Text color type. The default is tcol = lcol.

acol

Arrow color type. The default is acol = lcol.

parrow

Text and arrow height. The default is parrow = 0.5. This argument must be the same length as the type argument.

larrow

Text and arrow length. The default is larrow = 0.6.

ptext

Distance between lines of text. The default is ptext = 0.06.

side

Side to insert the text. The default is side = "right". This argument must be the same length as the type argument.

lwd

numeric argument. The vertical line width. The default is lwd = 2.

lwdarrow

numeric argument. The arrow width. The default is lwdarrow = lwd.

...

further arguments passed to or from other methods.

Value

No return value. This function adds elements to an existing plot.

Examples

# Example 1
library(leem)
set.seed(10)
rnorm(36, 100, 50) |>
 new_leem(variable = "continuous") |>
 tabfreq() |>
 hist() |>
 insert(
  lcol = "black",
  tcol = "purple",
  acol = "brown",
  parrow = 0.6,
  larrow = 0.6,
  ptext = 0.4,
  side = "left",
  lwd = 2,
  lwdarrow = 4
 )