Untitled

 avatar
unknown
plain_text
2 years ago
171 B
10
Indexable
from scipy.stats import norm

# Define the area
area = 0.168

# Calculate the corresponding z-score
z_score = norm.ppf(area)

print("The corresponding z-score:", z_score)
Editor is loading...
Leave a Comment