Loess : Parameters used to create smooth lines in 2d scatter plots

# loessBandwidth
Loess bandwidth. Thickness for the confidence of the loess curve. A vaulue between 0 and 1
Type: float
Default: 0.8
Used in: Scatter2D

loessBandwidth : 0.5

loessBandwidth : 0.8

loessBandwidth : 1


# loessCell
Loess cell. If interpolation is used this controls the accuracy of the approximation via the maximum number of points in a cell in the kd tree. Cells with more than floor(n*span*cell) points are subdivided
Type: float
Default: 0.2
Used in: Scatter2D

loessCell : 0.1

loessCell : 0.2

loessCell : 0.5


# loessDegree
Loess degree. 0 : Constant, 1 : Linear, 2 : Quadratic
Type: string
Default: 2
Options: 0, 1, 2
Used in: Scatter2D

loessDegree : "0"

loessDegree : "1"

loessDegree : "2"


# loessFamily
Loess Family. Type of error distribution to be optimized in fitting. The default, gaussian, is fitting with least squares. Fitting with Tukeys biweight M-Estimator is used if family is symmetric
Type: string
Default: gaussian
Options: gaussian, symmetric
Used in: Scatter2D

loessFamily : "gaussian"

loessFamily : "symmetric"


# loessNormalize
Flag to normalize loess fit in Scatter2D plots
Type: boolean
Default: true
Used in: Scatter2D

loessNormalize : true

loessNormalize : false


# loessSpan
Loess span. Factor to adjust the gaussian shape of the loess curve. A vaulue between 0 and 1
Type: float
Default: 0.75
Used in: Scatter2D

loessSpan : 0.5

loessSpan : 0.75

loessSpan : 1


# loessStatistics
LoessStatistics. The statistics to be computed exactly, approximately or not at all? Exact computation can be very slow
Type: string
Default: approximate
Options: approximate, exact
Used in: Scatter2D

loessStatistics : "approximate"

loessStatistics : "exact"


# loessSteps
Loess steps. Number of steps to smooth the line
Type: integer
Default: 30
Used in: Scatter2D

loessSteps : 20

loessSteps : 30

loessSteps : 40


# loessSurface
Loess Surface. The fitted surface to be computed exactly (direct) or via interpolation from a kd tree
Type: string
Default: interpolate
Options: direct, interpolate
Used in: Scatter2D

loessSurface : "direct"

loessSurface : "interpolate"


# showLoessFit
Flag to show/hide the Flag to show the loess fit in Scatter plots
Type: boolean
Default: false
Used in: Scatter2D

showLoessFit : true

showLoessFit : false