SciPy - Basics and Scientific Computing
What is the output of this code?
import numpy as np from scipy import special x = np.array([0, 1, 2]) y = special.expit(x) print(y)
