Seaborn Basics Flashcards

1
Q

How to import seaborn

A

import seaborn as sns

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

How to draw a boxplot for numeric column in a dataframe

A

sns.boxplot( x = df [ “ age “ ] )
plt.show( )

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

How to import pyplot

A

import matplotlib.pyplot as plt

How well did you know this?
1
Not at all
2
3
4
5
Perfectly