tensorflow / data-validation

Library for exploring and validating machine learning data

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Setting column width needs to change from -1 to None

barwimbe opened this issue · comments

commented

pd.set_option('max_colwidth', -1)
in https://github.com/tensorflow/data-validation/blob/master/tensorflow_data_validation/utils/display_util.py
L180
L217
needs to be changed from -1 to None

display_util.py:217: FutureWarning: Passing a negative integer is deprecated in version 1.0 and will not be supported in future version. Instead, use None to not limit the column width.
pd.set_option('max_colwidth', -1)