Field Warnings
The following {{warnings.shape[0]}} fields may cause potential issues, check the message and consider excluding them from model training.
Name |
Data Type |
Inferred Variable Type |
Count |
# Distinct |
% Distinct |
# Missing |
% Missing |
Message |
{% for ix, rec in warnings.iterrows() %}
{{ rec['_column'] }} |
{{ rec['_dtype'] }} |
{{ rec['_feature'] }} |
{{ rec['count'] }} |
{{ rec['nunique'] }} |
{{ '{0: >#016.2f}'.format(rec['nunique_pct']*100) }}% |
{{ rec['null'] }} |
{{ '{0: >#016.2f}'.format(rec['null_pct']*100)}}% |
{{ rec['_message'] }} |
{% endfor %}