42.62. Pumpkin varieties and color#

Load up required libraries and dataset. Convert the data to a dataframe containing a subset of the data:

Let’s look at the relationship between color and variety

import pandas as pd
import numpy as np

pumpkins = pd.read_csv('../../assets/data/us-pumpkins.csv')

pumpkins.head()

42.62.1. Acknowledgments#

Thanks to Microsoft for creating the open-source course ML-For-Beginners. It inspires the majority of the content in this chapter.