InterviewSolution
Saved Bookmarks
| 1. |
Which of the following object has a method cov to compute covariance between series?(a) Series(b) DataFrame(c) Panel(d) None of the mentionedI have been asked this question in semester exam.My doubt stems from Computational tools in section Data Analysis with Python of Data Science |
|
Answer» RIGHT OPTION is (a) Series Best explanation: DataFrame has a method cov to compute PAIRWISE covariances among the series in the DataFrame, ALSO excluding NA/null values. |
|