You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is taking forever to load, if a save to html option was available, It would be really useful.
I imagine, if I tried this on a much larger dataset, it would be problematic
Is there currently, a way to save TestSuite() output to html?
Regards
Elvy
The text was updated successfully, but these errors were encountered:
Thanks,
I looked at the documents earlier and didn't see the save_html
I was expecting a save("filename.html") which would have been consistent with the reports.
@ManunEbo, it will work the same way for Reports as it does for Test Suites - we are currently in the process of migrating reports to the new API: instead of Profile/Dashboard object, there is now a single Report object https://docs.evidentlyai.com/user-guide/tests-and-reports/get-reports. You can still use the old Dashboards/Profiles API in the meantime, but it will be depreciated after the migration is completed.
I'm following the examples provided:
#dataset-level tests
data_integrity_dataset_tests = TestSuite(tests=[
TestNumberOfColumns(),
TestNumberOfRows(),
TestNumberOfNulls(),
TestShareOfNulls(),
TestNumberOfColumnsWithNulls(),
TestNumberOfRowsWithNulls(),
TestShareOfColumnsWithNulls(),
TestShareOfRowsWithNulls(),
TestNumberOfDifferentNulls(),
TestNumberOfConstantColumns(),
TestNumberOfEmptyRows(),
TestNumberOfEmptyColumns(),
TestNumberOfDuplicatedRows(),
TestNumberOfDuplicatedColumns(),
TestColumnsType(),
])
data_integrity_dataset_tests.run(reference_data=adult_ref, current_data=adult_cur)
data_integrity_dataset_tests
This is taking forever to load, if a save to html option was available, It would be really useful.
I imagine, if I tried this on a much larger dataset, it would be problematic
Is there currently, a way to save TestSuite() output to html?
Regards
Elvy
The text was updated successfully, but these errors were encountered: