InterviewSolution
Saved Bookmarks
| 1. |
Which of the following is not an indexed object?(a) SparseSeries(b) SparseDataFrame(c) SparsePanel(d) None of the mentionedI got this question during an interview.Enquiry is from Pandas in portion Data Analysis with Python of Data Science |
|
Answer» RIGHT choice is (d) None of the mentioned Explanation: SparseArray can be converted BACK to a REGULAR ndarray by CALLING to_dense. |
|