MCPcopy Create free account
hub / github.com/Open-Quant/openquant / data_quality_report_df

Function data_quality_report_df

crates/pyopenquant/src/data.rs:139–143  ·  view source on GitHub ↗
(py: Python<'_>, pydf: PyDataFrame)

Source from the content-addressed store, hash-verified

137 Ok((PyDataFrame(out_df), out_report))
138}
139
140#[pyfunction(name = "quality_report_df")]
141fn data_quality_report_df(py: Python<'_>, pydf: PyDataFrame) -> PyResult<PyObject> {
142 let df: DataFrame = pydf.into();
143 let report = openquant::data_processing::quality_report_df(&df, 0).map_err(to_py_err)?;
144 report_to_pydict(py, report)
145}
146

Callers

nothing calls this directly

Calls 2

quality_report_dfFunction · 0.85
report_to_pydictFunction · 0.85

Tested by

no test coverage detected