Python Cerberus – Validating Schema with this Example
I am using Cerberus to validate dataframes schema. Using this sample data and code below, the if-else statement should "data structure is valid", however it returns that the "data structure is not valid". Any insight would be appreciated. import pandas as pd from cerberus import Validator df = pd.DataFrame({ ‘name’: [‘Alice’, ‘Bob’, ‘Charlie’], ‘age’: [25,… Read More Python Cerberus – Validating Schema with this Example