Thanks for clarifying 🙂 That is all correct.
The LOESS Fit in DataGraph uses a cubic drop-off for a weight function. At the edge of the interval the weight is zero. At the center, the weight is 1.
The function is scaled across the x-axis depending on the selected radius for the local fit, where the radius is the distance from the center to the edge of the values included in the local regression.
When the Smoothing is set to specify the radius, the default is 0.3 times the width, where the ‘width’ is the range of the x data.
Using this choice, the total interval used in the local fit is 0.6 of the width. Because of the drop-off of the weight function, you end up with about 0.3 of the width dominating the fit.
To further illustrate, we found an example from the National Institute for Standards and Technology (NIST): https://www.itl.nist.gov/div898/handbook/pmd/section4/pmd423.htm
Here is the NIST example, created using DataGraph:
Appreciate you pointing out the missing documentation. We will be adding these details.