Data Science Mastery Quests
  • About
  • Schedule
  • Examples
  • FAQ

Jupyter Notebooks in Quarto

This page was created from a Jupyter notebook!
Author

Bletchley

Published

June 21, 2024

import pandas as pd
import matplotlib.pyplot as plt

mtcars = pd.read_csv("https://raw.githubusercontent.com/plotly/datasets/master/mtcars.csv")

plt.scatter(x=mtcars.wt, y=mtcars.mpg)
plt.title("Miles per Gallon vs Weight")
plt.show()

The heavier the vehicle, the worse the gas mileage!

  • View source
  • Report an issue