SmoothStatParameters

interface SmoothStatParameters : OptionsCapsule

Properties for parameters of statSmooth().

Inheritors

Properties

Link copied to clipboard
abstract val deg: Int?

Degree of polynomial for linear regression model.

Link copied to clipboard
abstract val level: Number?

Level of confidence interval to use.

Link copied to clipboard
abstract val maxN: Int?

Maximum number of data-points for LOESS method. If this quantity exceeded random sampling is applied to data.

Link copied to clipboard
abstract val method: String?

Smoothing method: lm (Linear Model) or loess (Locally Estimated Scatterplot Smoothing).

Link copied to clipboard
abstract val n: Int?

Number of points to evaluate smoother at.

Link copied to clipboard
abstract val se: Boolean?

To display confidence interval around smooth.

Link copied to clipboard
abstract val seed: Long?

Random seed for LOESS sampling.

Link copied to clipboard
abstract val span: Number?

The fraction of source points closest to the current point is taken into account for computing a least-squares regression. A sensible value is usually 0.25 to 0.5.