I'm currently reading Python for Data Analysis by Wes. There's a line of code in the book which assign a inplace rename of a df to underscore. Why? And there's also a comment atop that says Always returns a reference to a DataFrame. What does it mean?
# Always returns a reference to a DataFrame
In [151]: _ = data.rename(index={'OHIO': 'INDIANA'}, inplace=True)