Inspection tutorial
This tutorial demonstrates the typical data inspection and risk-check pipeline.
Steps
Load your dataset
Run mlvern.data.inspect pipeline
Review the generated report
Example
import pandas as pd
from mlvern.data.inspect import inspect_df
df = pd.read_csv('data/sample.csv')
report = inspect_df(df)
report.save('reports/inspection.html')