Inplace=true will modify the original dataframe, while false will return the result in a new dataframe. When you assign a variable the result of in place=true (dataframe = dataframe...(I place=true)), you’ve overwritten the data frame with the result of that call (which is nothing, it happened in place)
Inplace=true will modify the original dataframe, while false will return the result in a new dataframe. When you assign a variable the result of in place=true (
dataframe = dataframe...(I place=true)
), you’ve overwritten the data frame with the result of that call (which is nothing, it happened in place)