Heads up! To view this whole video, sign in with your Courses account or enroll in your free 7-day trial. Sign In Enroll
Start a free Courses trial
to watch this video
Create a new project and use Pandas to import the YuGiOh monsters dataset. Set the Seaborn theme.
You should already have the dataset if you were working through the previous exercises. Here is the link if you need to download them again!
Challenge
- Import Pandas and Seaborn
- Set the Seaborn theme
- Use Pandas to import the dataset as
monsters
- Use Pandas to preview the dataset
Solution
import pandas as pd
import seaborn as sns
sns.set_theme()
monsters = pd.read_csv('monsters_40.csv')
monsters.head()
Related Discussions
Have questions about this video? Start a discussion with the community and Treehouse staff.
Sign upRelated Discussions
Have questions about this video? Start a discussion with the community and Treehouse staff.
Sign up
You need to sign up for Treehouse in order to download course files.
Sign upYou need to sign up for Treehouse in order to set up Workspace
Sign up