Enum linregress::Error[][src]

#[non_exhaustive]
pub enum Error {
    InconsistentSlopes(InconsistentSlopes),
    NoData,
    NoFormula,
    InvalidFormula,
    ColumnNotInData(String),
    ModelColumnNotInData(String),
    RegressorRegressandDimensionMismatch(String),
    RegressionDataError(String),
    ModelFittingError(String),
    InconsistentVectors,
    InconsistentRegressionModel,
}
Expand description

An error that can occur in this crate.

Generally this error corresponds to problems with input data or fitting a regression model.

Variants (Non-exhaustive)

This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
InconsistentSlopes(InconsistentSlopes)

Number of slopes and output names is inconsistent.

NoData

Cannot fit model without data.

NoFormula

Cannot fit model without formula.

InvalidFormula

Given formula is invalid.

ColumnNotInData(String)

Requested column is not in data. (Column given as String)

ModelColumnNotInData(String)

A column used in the model is misising from the provided data

RegressorRegressandDimensionMismatch(String)

Regressor and regressand dimensions do not match. (Column given as String)

RegressionDataError(String)

Error while processing the regression data. (Details given as String)

ModelFittingError(String)

Error while fitting the model. (Details given as String)

InconsistentVectors

The given vectors have inconsistent lengths

InconsistentRegressionModel

The RegressionModel internal state is inconsistent

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Formats the value using the given formatter. Read more

The lower-level source of this error, if any. Read more

🔬 This is a nightly-only experimental API. (backtrace)

Returns a stack backtrace, if available, of where this error occurred. Read more

👎 Deprecated since 1.42.0:

use the Display impl or to_string()

👎 Deprecated since 1.33.0:

replaced by Error::source, which can support downcasting

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

Should always be Self

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more

Checks if self is actually part of its subset T (and can be converted to it).

Use with care! Same as self.to_subset but without any property checks. Always succeeds.

The inclusion map: converts self to the equivalent element of its superset.

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more

Checks if self is actually part of its subset T (and can be converted to it).

Use with care! Same as self.to_subset but without any property checks. Always succeeds.

The inclusion map: converts self to the equivalent element of its superset.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

Converts the given value to a String. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.