powered by
carlboot
Plot the bootstrap distribution returned as a carlboot object.
# S3 method for carlboot plot(x, bins = 15, size = 5, xlab = NULL, ylab = NULL, title = NULL, ...)# S3 method for carlperm plot(x, bins = 15, size = 5, xlab = NULL, ylab = NULL, title = NULL, ...)
# S3 method for carlperm plot(x, bins = 15, size = 5, xlab = NULL, ylab = NULL, title = NULL, ...)
The carlboot object to print.
number of bins in histogram.
size of points.
an optional character string for the x-axis label
an optional character string for the y-axis label
an optional character string giving the plot title
not used
boot_dist <- boot(ToothGrowth$len, ToothGrowth$supp, B = 1000) plot(boot_dist) perm_dist <- permTest(states03$ViolentCrime, states03$DeathPenalty, B = 999) plot(perm_dist)
Run the code above in your browser using DataLab