Plot the curves
plotcurves
plot the curves.
plotcurves(qp, panel = NULL, xpanel = NULL, ypanel = NULL, color = NULL, averages = T, curves = T, thresholds = T, ci = T)
qp
: output from quickpsypanel
: Name of the variable to be split in panels.xpanel
: Name of the variable to be split in horizontal panels.ypanel
: Name of the variable to be split in vertical panels.color
: Name of the variable codded by color.averages
: If FALSE
averaged probabilities are not plotted (default is TRUE
).curves
: If FALSE
curves are not plotted (default is TRUE
)thresholds
: If FALSE
thresholds are not plotted (default is TRUE
)ci
: If FALSE
confidence intervals are not plotted (default is TRUE
)library(MPDiR) # contains the Vernier data fit <- quickpsy(Vernier, Phaseshift, NumUpward, N, grouping = .(Direction, WaveForm, TempFreq), B = 5) plotcurves(fit) plotcurves(fit, xpanel = Direction) plotcurves(fit, xpanel = Direction, color = WaveForm, ci = FALSE)
plotcurves_