Curriculum
Course: Data Science
Login

Curriculum

Data Science

Text lesson

The max() function

The Python max() function is used to identify the largest value in an array.

Example

Average_pulse_max = max(80859095100105110115120125)

print (Average_pulse_max)

The min() function

The Python min() function is used to determine the smallest value in an array.

Example

Average_pulse_min = min(80859095100105110115120125)

print (Average_pulse_min)

The mean() function

The NumPy mean() function is used to calculate the average value of an array.

Example

import numpy as np

Calorie_burnage = [240250260270280290300310320330]

Average_calorie_burnage = np.mean(Calorie_burnage)

print(Average_calorie_burnage)
Note: We use np. before mean to indicate that we want to call the mean function from the NumPy library.