feature name to be broken down by. If selecting a continuous feature, boxplot will be grouped by 5 equal ranges, otherwise, all existing categories for a discrete feature.
# NOT RUN {# plot iris dataset by "Species" (discrete)plot_boxplot(iris, by = "Species")
# plot mtcars dataset by "mpg" (continuous)plot_boxplot(mtcars, "mpg")
# }