pub struct DataProfiler;Expand description
数据分析器
Implementations§
Source§impl DataProfiler
impl DataProfiler
Sourcepub fn profile(&self, df: &DataFrame) -> Result<QualityReport>
pub fn profile(&self, df: &DataFrame) -> Result<QualityReport>
生成数据质量报告
Sourcepub fn column_stats(
&self,
df: &DataFrame,
column_name: &str,
) -> Result<ColumnStats>
pub fn column_stats( &self, df: &DataFrame, column_name: &str, ) -> Result<ColumnStats>
获取列的详细统计信息
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DataProfiler
impl RefUnwindSafe for DataProfiler
impl Send for DataProfiler
impl Sync for DataProfiler
impl Unpin for DataProfiler
impl UnsafeUnpin for DataProfiler
impl UnwindSafe for DataProfiler
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more