creating tertiles is somehow challenging for me.
When I am using cut, the breakpoints are nicely even but the groups aren't.
When using cut2, the groups are getting more evenly but it's still not a true tertile.
ntile gives true tertiles but I can't see the break points.
DF <- data.frame(var = rnorm(1000, 50, 15))
How can I create 3 groups, have ~333 in each and get shown the breakpoints?
I'd be glad about help!