+ 1
Pandas selecting columns
I am following the machine learning tutorial and decided to use the python program on my laptop instead of SoloLearn. I have written a .csv file called âdfâ on notepad and it can be read by my program (I know this because I am able to run head and other commands without issue). The problem occurs when I run the line âprint(df[âpclassâ])â. Pclass is one of the headers. If I run this line using the header of the first column instead of pclass it works. How can I get the line to print the contents of the pclass column, or any of the other columns?
3 Answers
+ 1
If your csv file has the correct structure, then it should work. Make sure you use the correct kind of apostrophe ' instead of the fancy ones you have in your question. Also make sure the column name is capitalized correctly same as in the csv (pclass and Pclass are different).
If this doesn't help, post your error message and link your code in the playground.
+ 1
Hello, thanks for your reply. Iâm pretty sure that the csv file is in the right structure and the names are capitalised correctly. My error message is very long and refers to a part of the panda module called âindex engine.get_locâ. Most of the issue seems to be occurring there.
0
Post your code in the playground and link it.
https://www.sololearn.com/post/75089/?ref=app
Otherwise it is really difficult to help you...