I have
X=c(20 ,18, 34, 45, 30, 51, 63, 52, 29, 36, 27, 24)
With boxplot
, i\'m trying to plot the quantile(X,0.25)
One can specify the method for calculating the sample quantile using the type =
argument in quantile
, but not in boxplot
. However, there is an R package on CRAN, qboxplot, that contains a function also called qboxplot
(hence qboxplot::qboxplot
) that allows one to specify the quantile calculation method using the qtype =
argument.