InterviewSolution
Saved Bookmarks
| 1. |
Which of the following object you get after reading CSV file?(a) DataFrame(b) Character Vector(c) Panel(d) All of the mentionedThis question was posed to me in an online quiz.My enquiry is from Pandas topic in division Data Analysis with Python of Data Science |
|
Answer» RIGHT choice is (a) DATAFRAME For EXPLANATION: You get COLUMNS out of a DataFrame the same WAY you get elements out of a dictionary. |
|