How to suppress Pandas Future warning ?

Found this on github

import warnings
warnings.simplefilter(action='ignore', category=FutureWarning)

import pandas

Leave a Comment