InterviewSolution
Saved Bookmarks
| 1. |
Point out the wrong statement.(a) to_array. append can accept scalar values or any 2-dimensional sequence(b) Two kinds of SparseIndex are implemented(c) The integer format keeps an arrays of all of the locations where the data are not equal to the fill value(d) None of the mentionedThis question was posed to me in an interview for job.The question is from Pandas in portion Data Analysis with Python of Data Science |
|
Answer» CORRECT option is (a) to_array. append can accept scalar VALUES or any 2-dimensional SEQUENCE For explanation: to_array. append can accept scalar values or any 1-dimensional sequence. |
|