Struct polars_io::export::Statistics
source · pub struct Statistics {
pub null_count: Box<dyn Array + 'static, Global>,
pub distinct_count: Box<dyn Array + 'static, Global>,
pub min_value: Box<dyn Array + 'static, Global>,
pub max_value: Box<dyn Array + 'static, Global>,
}
Available on crate feature
parquet
only.Expand description
Arrow-deserialized parquet Statistics of a file
Fields§
§null_count: Box<dyn Array + 'static, Global>
number of nulls. This is a UInt64Array
for non-nested types
distinct_count: Box<dyn Array + 'static, Global>
number of dictinct values. This is a UInt64Array
for non-nested types
min_value: Box<dyn Array + 'static, Global>
Minimum
max_value: Box<dyn Array + 'static, Global>
Maximum
Trait Implementations§
source§impl Debug for Statistics
impl Debug for Statistics
source§impl From<MutableStatistics> for Statistics
impl From<MutableStatistics> for Statistics
source§fn from(s: MutableStatistics) -> Statistics
fn from(s: MutableStatistics) -> Statistics
Converts to this type from the input type.
source§impl PartialEq<Statistics> for Statistics
impl PartialEq<Statistics> for Statistics
source§fn eq(&self, other: &Statistics) -> bool
fn eq(&self, other: &Statistics) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.