How can I get the border values given by ntile function in R? For example I am converting continuous variable into a categorical one:
complexes_data2$DurationClass <- ntile(complexes_data2$Duration, 3)
How can I get the exact values where one category (group) ends and another one starts? Border values?