Load diamond dataset

** Introduction to Machine Learning & AI with Python
Lesson Content
0% Complete

Learn.

In this section we will learn to load ‘diamonds’ dataset from seaborn library 

df = sns.load_dataset(“diamonds”)
 
# Checking the data
df.head()
 
Note: For additional details on the diamonds dataset, refer to the following link.
 
Tip: Use straight quotes (e.g., “Hello”) instead of curly quotes (e.g., “Hello”). When you copy and paste code, quotes may change automatically and lead to errors. 
 
Jupyter Notebook
Loading Python...

Loading Python environment...

First load takes 15–30 seconds

Lesson Materials & Datasets

No materials available for this lesson yet.

Course Outline