powered by
A helper function for segment, box and cube counting fractal methods. The function divide the array into n pieces and counts how many are occupied.
n
cell_count_1d(pts, xmin, xmax, n)
Number of filled cells
Data frame with x coordinates
Minimum x-value
Maximum x-value
Multiplier
pts <- data.frame(x = rnorm(200, 0, 5)) cell_count_1d(pts, xmin = min(pts$x), xmax = max(pts$x), n = 5)
Run the code above in your browser using DataLab