ποΈ π The Partials Concept
The Partials are a more efficient way of calculating the average of one data array partial sizes by avoiding the recalculation of the entire array every time.
ποΈ π Partial Create
When you create a Partial, the structure will create a reactive variable behind the scenes. The name reactive represents how the variables will automatically update their values without more instructions.
ποΈ π€ Partial Get
Returns the partial average result of the requested ID.
ποΈ π Partial Size of Array
Returns the size of the partial.
ποΈ π Partial Point Count
Returns the number of data points pushed in the array contributing to the partial average calculation.
ποΈ π Partials Memory
By its nature, the partials don't copy the data on the original array, but instead store already computed data based on the original array. This means that a single partial instance consumes constant memory, regardless of the size of the original array.