InterviewSolution
Saved Bookmarks
| 1. |
Which of the following is used to compute the percent change over a given number of periods?(a) pct_change(b) percent_change(c) per_change(d) none of the mentionedThis question was posed to me in an interview.Question is taken from Computational tools topic in chapter Data Analysis with Python of Data Science |
|
Answer» RIGHT answer is (a) pct_change Easy explanation - Series, DataFrame, and PANEL all have a METHOD pct_change. |
|