Skip to contents

Options are:

hideConfidenceInterval: Logical. Whether to show confidence intervals

line: Logical. Whether to plot a line using geom_line

point: Logical. Whether to plot points using geom_point

facetNcols -> Numeric. Number of facet columns

facetScales -> Character. Should scales be fixed ("fixed", the default), free ("free"), or free in one dimension ("free_x", "free_y")?

Usage

optionsPlot()

Value

List of available parameters and their default values.

Examples

# \donttest{
optionsPlot()
#> $hideConfidenceInterval
#> [1] FALSE
#> 
#> $line
#> [1] FALSE
#> 
#> $point
#> [1] TRUE
#> 
#> $facetNcols
#> NULL
#> 
#> $facetScales
#> [1] "fixed"
#> 
# }