SciPy - Integration with Scientific Ecosystem
What will be the output of this code?
import pandas as pd
from scipy import stats
df = pd.DataFrame({'values': [10, 20, 30, 40, 50]})
result = stats.zscore(df['values'])
print(result.round(2).tolist())