Returns the sample size of the data set contained within the distribution object.
Examples
################################################
# Load data and create example object
################################################
data(moby_sample)
m = displ$new(moby_sample)
################################################
# get_n and length should return the same value
################################################
get_n(m)
#> [1] 2000
length(moby_sample)
#> [1] 2000