skoot.utils.validate_test_set_columns¶
-
skoot.utils.validate_test_set_columns(fit_columns, test_columns)[source][source]¶ Validate that the test set columns will work.
This function checks that the
fit_columnsare present in thetest_columnsset and raises a ValueError if not.Parameters: fit_columns : list or iterable
The column names the estimator was fit on.
test_columns : list or iterable
The column names the test set contains.