InterviewSolution
Saved Bookmarks
| 1. |
Which of the following list-like data structure is used for managing a dynamic collection of SparseArrays?(a) SparseList(b) GeoList(c) SparseSeries(d) All of the mentionedI got this question in a job interview.This is a very interesting question from Pandas in section Data Analysis with Python of Data Science |
|
Answer» CORRECT answer is (a) SparseList The best I can explain: To CREATE one, SIMPLY call the SparseList constructor with a fill_value. |
|