Struct google_bigquery2::api::PrincipalComponentInfo[][src]

pub struct PrincipalComponentInfo {
    pub cumulative_explained_variance_ratio: Option<f64>,
    pub explained_variance: Option<f64>,
    pub explained_variance_ratio: Option<f64>,
    pub principal_component_id: Option<String>,
}

Principal component infos, used only for eigen decomposition based models, e.g., PCA. Ordered by explained_variance in the descending order.

This type is not used in any activity, and only used as part of another schema.

Fields

cumulative_explained_variance_ratio: Option<f64>

The explained_variance is pre-ordered in the descending order to compute the cumulative explained variance ratio.

explained_variance: Option<f64>

Explained variance by this principal component, which is simply the eigenvalue.

explained_variance_ratio: Option<f64>

Explained_variance over the total explained variance.

principal_component_id: Option<String>

Id of the principal component.

Trait Implementations

impl Clone for PrincipalComponentInfo[src]

impl Debug for PrincipalComponentInfo[src]

impl Default for PrincipalComponentInfo[src]

impl<'de> Deserialize<'de> for PrincipalComponentInfo[src]

impl Part for PrincipalComponentInfo[src]

impl Serialize for PrincipalComponentInfo[src]

Auto Trait Implementations

impl RefUnwindSafe for PrincipalComponentInfo[src]

impl Send for PrincipalComponentInfo[src]

impl Sync for PrincipalComponentInfo[src]

impl Unpin for PrincipalComponentInfo[src]

impl UnwindSafe for PrincipalComponentInfo[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.