# NOT RUN {
ibeta(0.5, shape1 = 3, shape2 = 1, ncp = 2)
set.seed(8675309)
ibeta(runif(10), 3, 1, showPDF = TRUE)
set.seed(8675309)
ibeta(runif(10), 3, 1, showECDF = TRUE)
set.seed(8675309)
ibeta(runif(10), 3, 1, showPDF = TRUE, showECDF = TRUE, sampleColor = "blue3")
set.seed(8675309)
ibeta(runif(10), 3, 1, showPDF = TRUE, showCDF = FALSE)
# }
# NOT RUN {
ibeta(runif(100), 3, 1, showPDF = TRUE, minPlotQuantile = 0.02, maxPlotQuantile = 0.98)
# }
# NOT RUN {
# plot the PDF and CDF without any variates
ibeta(NULL, 3, 1, showPDF = TRUE, showCDF = TRUE)
# plot CDF with inversion and PDF using show
# }
# NOT RUN {
ibeta(runif(10), 3, 1, show = c(1,1,0))
# }
# NOT RUN {
ibeta(runif(10), 3, 1, show = 6)
# plot CDF with inversion and ECDF using show, using vunif
# }
# NOT RUN {
ibeta(vunif(10), 3, 1, show = c(1,0,1))
# }
# NOT RUN {
ibeta(vunif(10), 3, 1, show = 5)
# plot CDF with inversion, PDF, and ECDF using show
# }
# NOT RUN {
ibeta(vunif(10), 3, 1, show = c(1,1,1))
# }
# NOT RUN {
ibeta(vunif(10), 3, 1, show = 7)
# plot three different CDF+PDF+ECDF horizontal displays,
# with title only on the first display
par(mfrow = c(3,3)) # 3 rows, 3 cols, filling rows before columns
set.seed(8675309)
ibeta(runif(20), 3, 1, show = 7, respectLayout = TRUE)
ibeta(runif(20), 3, 1, show = 7, respectLayout = TRUE, showTitle = FALSE)
ibeta(runif(20), 3, 1, show = 7, respectLayout = TRUE, showTitle = FALSE)
# overlay visual exploration of ks.test results
set.seed(54321)
vals <- ibeta (runif(10), 3, 1, showECDF = TRUE)
D <- as.numeric(ks.test(vals, "pbeta", 3, 1)$statistic)
for (x in seq(0.75, 1.25, by = 0.05)) {
y <- pbeta(x, 3, 1)
segments(x, y, x, y + D, col = "darkgreen", lwd = 2, xpd = NA)
}
# }
# NOT RUN {
# display animation of all components
ibeta(runif(10), 3, 1, show = 7, plotDelay = 0.1)
# display animation of CDF and PDF components only
ibeta(runif(10), 3, 1, show = 5, plotDelay = 0.1)
# pause at each stage of inversion
ibeta(runif(10), 3, 1, show = 7, plotDelay = -1)
# }
# NOT RUN {
# }
Run the code above in your browser using DataLab