IVYplot {IVYplot}R Documentation

IVY Plot

Description

The function will draw an IVY Plot (similar to Dot Plot) with/without frequencies

Usage

IVYplot(
  data0,
  showFreq = TRUE,
  freqSize = 1,
  multiple = NULL,
  delta = 1,
  limA = NULL,
  limB = NULL
)

Arguments

data0

The data vector the user will input

showFreq

Option for the user to show the frequencies at each value or not. TRUE = show/FALSE = do not show. Default is TRUE

freqSize

The font size of the frequencies if the user wants to show the frequencies. Default is 1.0

multiple

The maximum number of observations each leaflet represents. Default is calculated to ensure at most 20 leaves at each value

delta

The gap between successive values. Default is 1

limA

The lower limit on the horizontal axis. Default is minimum of the values

limB

The upper limit on the horizontal axis. Default is maximum of the values

Value

Gives you an IVY plot

Examples

  IVYplot(data0 = c(rpois(500, 10), 30, 30, 30), freqSize = 1.5, multiple = 3)

[Package IVYplot version 0.1.0 Index]