Pandas dataframe missing value Question | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Pandas dataframe missing value Question

My output is correct but due to column heading , it is not getting matched with the test cases …plz tell how to remove column heading (0) from the dataframe …. https://code.sololearn.com/cWtAL5viA5qG/?ref=app

8th Aug 2021, 5:37 PM
seema
seema - avatar
1 Answer
+ 3
hi seema your question and code does not really make sense and it looks like someone elses code. not sure if you accidentally mixed it up. for instance, you mention dataframe which is pandas, while the code you are sharing uses numpy. if you are using pandas, the column heading (0) is most likely referencing your index column. to remove the index column you may have to drop your index. an example would look like: df.reset_index(drop=True,inplace=True) or maybe convert the dataframe to a numpy array with: df.to_numpy() best of luck.
8th Aug 2021, 6:02 PM
you are smart. you are brave.
you are smart. you are brave. - avatar