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

Function quality_report

crates/openquant/src/data_processing.rs:548–554  ·  view source on GitHub ↗
(
    rows: &[OhlcvRow],
    rows_removed_by_deduplication: usize,
)

Source from the content-addressed store, hash-verified

546}
547
548pub fn quality_report(
549 rows: &[OhlcvRow],
550 rows_removed_by_deduplication: usize,
551) -> DataQualityReport {
552 let cols = rows_to_columns(rows);
553 quality_report_columns(&cols, rows_removed_by_deduplication).expect("validated rows")
554}
555
556pub fn align_calendar_rows(
557 rows: &[OhlcvRow],

Callers

nothing calls this directly

Calls 2

rows_to_columnsFunction · 0.85
quality_report_columnsFunction · 0.85

Tested by

no test coverage detected