What is the use of inplace=True?
When you use inplace=True, it automatically makes changes to the original dataframe as you're making changes to your dataframe inplace of the original dataframe.
All those functions that provide the inplace=True functionality allow you to make changes to the original dataframe without having to assign it to the dataframe as you did for the round function.
Comments
0 comments
Article is closed for comments.