style_plotSC {scan}R Documentation

Create styles for single-case data plots

Description

The style_plotSC function is used to create graphical styles for a single-case plot

Usage

style_plotSC(style = "default", ...)

style.plotSC(...)

Arguments

style

Predefined styles.

...

Further arguments passed to the plot command.

Details

style_plotSC("") will return a list of predefined styles. Predefined styles can be combined style_plotSC(style = c("grid2", "tiny")) where settings of a latter style overwrite settings of the former. Additional style paramters are set following the style argument and can be combined with those: style_plotSC(style = "grid2", fill = "grey50", pch = 18).

Value

Returns a list to be provided or the style argument of the plot function.

Author(s)

Juergen Wilbert

See Also

plot.scdf

Examples

newstyle <- style_plotSC(style = "default")
newstyle$text.ABlag <- c("START","END")
newstyle$col.dots <- ""
newstyle$annotations <- list(cex = 0.6, col = "grey10", offset = 0.4)
plot(exampleABC, style = newstyle)


[Package scan version 0.40.0 Index]