Skip to main content

SparseAccessor

Struct SparseAccessor 

Source
pub struct SparseAccessor<'a> { /* private fields */ }
Expand description

Accessor for sparse operations on a Series.

Created by Series::sparse(). Provides the pandas Series.sparse namespace over the current dense-backed sparse dtype descriptor.

Implementations§

Source§

impl SparseAccessor<'_>

Source

pub fn value_dtype(&self) -> DType

Return the logical sparse value dtype.

Matches pd.Series.sparse.dtype.subtype.

Source

pub fn fill_value(&self) -> &Scalar

Return the sparse fill value.

Matches pd.Series.sparse.fill_value.

Source

pub fn npoints(&self) -> usize

Count stored non-fill values.

Matches the SparseArray.sp_values cardinality used by pandas density.

Source

pub fn sp_values(&self) -> Vec<Scalar>

Return the non-fill values as a Vec.

Matches pd.Series.sparse.sp_values (returns underlying non-fill data).

Source

pub fn sp_index(&self) -> Vec<usize>

Return the indices of non-fill values.

Returns position indices (0-based) where values differ from fill_value.

Source

pub fn density(&self) -> f64

Return non-fill density as npoints / len.

Matches pd.Series.sparse.density.

Source

pub fn to_dense(&self) -> Series

Materialize this sparse Series as a dense Series.

Matches pd.Series.sparse.to_dense().

Auto Trait Implementations§

§

impl<'a> Freeze for SparseAccessor<'a>

§

impl<'a> RefUnwindSafe for SparseAccessor<'a>

§

impl<'a> Send for SparseAccessor<'a>

§

impl<'a> Sync for SparseAccessor<'a>

§

impl<'a> Unpin for SparseAccessor<'a>

§

impl<'a> UnsafeUnpin for SparseAccessor<'a>

§

impl<'a> UnwindSafe for SparseAccessor<'a>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.