Skip to content

Introduction to Statistics in Python

Run the hidden code cell below to import the data used in this course.

# Pipe | kullanarak aynı anda iki filtre yapmak:
be_and_usa = food_consumption[(food_consumption["country"] == "Belgium") | (food_consumption["country"] == "USA")]

Take Notes

Add notes about the concepts you've learned and code cells with code you want to keep.

Add your notes here

# Add your code snippets here