Www.mystudyzone.com

35.Write a small python code to drop a row from dataframe labeled as 1. Ans:- # Drop rows with label 1. df = df.drop(1) print(df ) ... Write the code to find mean value from above dataframe df over the index and column axis. (Skip NaN value) (ii) Use sum() function to find the sum of all the values over the index … ................
................