InterviewSolution
Saved Bookmarks
| 1. |
Consider the following python code and write the output for statement S1 import pandas as pdK=pd.series([2,4,6,8,10,12,14])K.quantile([0.50,0.75]) ---------------------- S1 |
|
Answer» 0.50 8.0 0.75 11.0 |
|