Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Lernen Aggregate Functions | Introduction to NumPy
Introduction to Data Analysis in Python
course content

Kursinhalt

Introduction to Data Analysis in Python

Introduction to Data Analysis in Python

1. Basics
2. Data Types
3. Control Flow
4. Functions and Modules
5. Introduction to NumPy

book
Aggregate Functions

You can also calculate aggregate statistics of NumPy arrays, like minimum, maximum, mean, product, sum, etc. These ase realized in NumPy as arrays methods.

MethodDescription
.mean()Returns the arithmetic mean
.sum()Returns the sum of elements
.prod()Returns the product of all elements
.min()Returns the minimum of an array
.max()Returns the maximum of an array
.std()Returns the standard deviation of array elements
.var()Returns the variance of array elements

For example, assume we have two arrays: prices and sales, representing goods' prices and quantity of each good being sold, respectively. Using multiplication and .sum() method we can easily calculate the total revenue.

12345678910
# Import the library import numpy as np # Two arrays prices = np.array([15, 60, 40, 5]) sales = np.array([7, 3, 5, 15]) # Revenue per good rev_per_good = prices * sales # Total revenue print("Total revenue is", rev_per_good.sum())
copy

War alles klar?

Wie können wir es verbessern?

Danke für Ihr Feedback!

Abschnitt 5. Kapitel 4

Fragen Sie AI

expand
ChatGPT

Fragen Sie alles oder probieren Sie eine der vorgeschlagenen Fragen, um unser Gespräch zu beginnen

course content

Kursinhalt

Introduction to Data Analysis in Python

Introduction to Data Analysis in Python

1. Basics
2. Data Types
3. Control Flow
4. Functions and Modules
5. Introduction to NumPy

book
Aggregate Functions

You can also calculate aggregate statistics of NumPy arrays, like minimum, maximum, mean, product, sum, etc. These ase realized in NumPy as arrays methods.

MethodDescription
.mean()Returns the arithmetic mean
.sum()Returns the sum of elements
.prod()Returns the product of all elements
.min()Returns the minimum of an array
.max()Returns the maximum of an array
.std()Returns the standard deviation of array elements
.var()Returns the variance of array elements

For example, assume we have two arrays: prices and sales, representing goods' prices and quantity of each good being sold, respectively. Using multiplication and .sum() method we can easily calculate the total revenue.

12345678910
# Import the library import numpy as np # Two arrays prices = np.array([15, 60, 40, 5]) sales = np.array([7, 3, 5, 15]) # Revenue per good rev_per_good = prices * sales # Total revenue print("Total revenue is", rev_per_good.sum())
copy

War alles klar?

Wie können wir es verbessern?

Danke für Ihr Feedback!

Abschnitt 5. Kapitel 4
Wir sind enttäuscht, dass etwas schief gelaufen ist. Was ist passiert?
some-alt