This function finds point values from a vector argument to produce
groups
intervals. Setting groups=2
will return three values,
the two end points, and one mid point (at the median value of the vector).
The output can be passed directly into the breaks argument of the
cut
function for creating groups for coplots.
Examples
data(Boston, package = "MASS")
rfsrc_boston <- randomForestSRC::rfsrc(medv ~ ., Boston)
# To create 6 intervals, we want 7 points.
# quantile_pts will find balanced intervals
rm_pts <- quantile_pts(rfsrc_boston$xvar$rm, groups = 6, intervals = TRUE)
# Use cut to create the intervals
rm_grp <- cut(rfsrc_boston$xvar$rm, breaks = rm_pts)
summary(rm_grp)
#> (3.56,5.73] (5.73,5.98] (5.98,6.21] (6.21,6.47] (6.47,6.87] (6.87,8.78]
#> 81 85 92 87 81 80