Closed maugavilla closed 6 years ago
I added this feature. There is a legend=TRUE
argument that can be set FALSE
to suppress a legend. There is also a legendArgs = list()
argument, so you can pass arguments to the legend()
function. Using your example above, see how these arguments work:
plotProbe(result2wayMC, xlim = c(-2, 2), legend = FALSE)
plotProbe(result2wayMC, xlim = c(-2, 2), legendArgs = list(x = "topleft"))
plotProbe(result2wayMC, xlim = c(-2, 2), legendArgs = list(x = -2, y = 5))
Add an argument to the plotProbe function to plot without a legend, so we can plot the Johnson-Neyman tests, something like this