Removes the custom converters added by register(). This
attempts to set the state of the registry back to the state before
pandas registered its own units. Converters for pandas’ own types like
Timestamp and Period are removed completely. Converters for types
pandas overwrites, like datetime.datetime, are restored to their
original value.
Unsetting the register manually an error will be raised:
>>> pd.set_option("plotting.matplotlib.register_converters",... False)>>> df.plot.line(x='ts',y='y')Traceback (most recent call last):TypeError: float() argument must be a string or a real number, not 'Period'