rborel() currently returns <epichains_summary> objects because it uses simulate_summary() under the hood. The returned object must be numeric to be in line with other similar functions.
library(epichains)
out <- rborel(2, 0.9)
class(out)
#> [1] "epichains_summary" "numeric"
Created on 2024-01-26 with [reprex v2.1.0](https://reprex.tidyverse.org/)
rborel()
currently returns<epichains_summary>
objects because it usessimulate_summary()
under the hood. The returned object must be numeric to be in line with other similar functions.