Packages
Installing and Loading Packages
Installing Packages Syntax
pip install numpyLoading Packages
import numpy as np# Creating an array
array1 = np.array([1, 2, 3, 4, 5])
# Getting the mean of the values in our array
mean = np.mean(array1)
Module-Based Packages
Scikit-Learn
Last updated
