lcc PlotsThis function customizes the graphical control settings for plots of the
lcc class. It allows for the adjustment of various aspects such as
shape, color, and size of plot elements, as well as axis labels. The function
returns a list containing all these settings, which can be used in plotting
functions for lcc objects.
plotControl(
plot = TRUE,
shape = 16,
colour = "#1B4F72",
size = 0.7,
ci_fill = NULL,
ci_alpha = NULL,
point_alpha = NULL,
xlab = "Time",
ylab = "LCC"
)A list with the specified graphical parameters.
Logical flag to include an initial plot. If set to TRUE,
a ggplot object with an initial plot for lcc
class is returned. Defaults to TRUE.
Numeric value specifying the shape of points in the plot.
Acceptable values are from 0 to 25, and 32 to 127. See
aes for details on setting shape. Default is 1.
String specifying the color of lines in the plot.
Default color is "black".
Numeric value specifying the size of lines in the plot, given in
millimeters. See aes for details on setting size.
Default is 0.5.
Title for the x-axis, defaulting to "Time".
Title for the y-axis, defaulting to "LCC".
Thiago de Paula Oliveira, thiago.paula.oliveira@alumni.usp.br