Skip to content

Introduction to Statistics in Python

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


1 hidden cell

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
print('hello world')

hello world

Spinner
DataFrameas
df
variable
-- Select the product details, quantity, and location of bicycles in stock
SELECT product_name,
        category_name,
        list_price,
        quantity,
        store_id
FROM products
  INNER JOIN stocks
    ON products.product_id = stocks.product_id
  INNER JOIN categories
    ON products.category_id = categories.category_id
ORDER BY product_name