+3 votes
in Class 12 by kratos

Consider the following python code and write the output for statement S1 import pandas as pd

K=pd.series([2,4,6,8,10,12,14])

K.quantile([0.50,0.75]) ---------------------- S1

1 Answer

+2 votes
by kratos
 
Best answer

0.50 8.0

0.75 11.0

...