plotInfo
is a plotting function to visualize scale-level information.
plotInfo(
object,
data,
theta = seq(-4, 4, 0.1),
t_score = FALSE,
scale_label = c(1, 2, "Combined"),
color = c("red", "blue", "black"),
lty = c(3, 2, 1)
)
# S4 method for SingleGroupClass
plotInfo(
object,
data,
theta = seq(-4, 4, 0.1),
t_score = FALSE,
scale_label = c(1, 2, "Combined"),
color = c("red", "blue", "black"),
lty = c(3, 2, 1)
)
a SingleGroupClass
object from runCalibration
.
a PROsetta_data
object.
(optional) theta values to plot on the x-axis. (default = seq(-4, 4, .1)
)
(optional) set to TRUE
to plot T-scores on the x-axis instead of thetas. (default = FALSE
)
(optional) names of each scale. This must have three values. (default = c(1, 2, "Combined")
)
(optional) line colors to plot. This must have three values. (default = c("red", "blue", "black")
)
(optional) line types to plot. This must have three values. (default = c(3, 2, 1)
)
# \donttest{
o <- runCalibration(data_asq, technical = list(NCYCLES = 1000))
plotInfo(o, data_asq)
# }