You're provided with a small dataset with the following features:
livingspis the living area of an apartment;nonlivingspis the nonliving area of an apartment;totspis the total area of an apartment;priceis just price.
Load the given dataset into your IDE using pandas and find out the best way to fill NaNs. Then replace them and calculate the sum of all values in the column totsp . Insert the result in the answer field.
Note that we expect an integer as the answer for this task.
Tip: Finding the relationship between livingsp, nonlivingsp, and totsp is key to the solution.