Learn R Programming

ggRandomForests (version 2.2.1)

quantile_pts: Find points evenly distributed along the vectors values.

Description

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.

Usage

quantile_pts(object, groups, intervals = FALSE)

Value

vector of groups+1 cut point values.

Arguments

object

vector object of values.

groups

how many points do we want

intervals

should we return the raw points or intervals to be passed to the cut function

See Also

cut gg_partial_coplot

Examples

Run this code
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)

Run the code above in your browser using DataLab