Course Content
First Dive into seaborn Visualization
First Dive into seaborn Visualization
Countplot
A countplot is a plot that takes a categorical list and returns columns that represent the number of list entries for each category.
An example of a countplot:
To initialize a countplot, we need to input at least 1 parameter: x
(the column in which values will be counted).
Note
We may also use
y
instead ofx
to change the orientation of the plot.
As the seaborn
is based on the matplotlib
, we may use a special matplotlib.pyplot
library and its function plt.show()
to show the plot:
Look at the code below!
# Importing the Seaborn import seaborn as sns # Importing the matplotlib.pyplot import matplotlib.pyplot as plt # Data list data_list = ['apple', 'fish', 'milk', 'milk', 'apple', 'apple', 'milk', 'fish', 'fish'] # Creating the countplot sns.countplot(x = data_list) # Showing the plot plt.show()
Let's solve this problem!
Task
- Import the
seaborn
library with thesns
alias. - Import the
matplotlib.pyplot
library with theplt
alias. - Initialize the x-oriented countplot for
guests_list
. - Show the plot.
Thanks for your feedback!
Countplot
A countplot is a plot that takes a categorical list and returns columns that represent the number of list entries for each category.
An example of a countplot:
To initialize a countplot, we need to input at least 1 parameter: x
(the column in which values will be counted).
Note
We may also use
y
instead ofx
to change the orientation of the plot.
As the seaborn
is based on the matplotlib
, we may use a special matplotlib.pyplot
library and its function plt.show()
to show the plot:
Look at the code below!
# Importing the Seaborn import seaborn as sns # Importing the matplotlib.pyplot import matplotlib.pyplot as plt # Data list data_list = ['apple', 'fish', 'milk', 'milk', 'apple', 'apple', 'milk', 'fish', 'fish'] # Creating the countplot sns.countplot(x = data_list) # Showing the plot plt.show()
Let's solve this problem!
Task
- Import the
seaborn
library with thesns
alias. - Import the
matplotlib.pyplot
library with theplt
alias. - Initialize the x-oriented countplot for
guests_list
. - Show the plot.
Thanks for your feedback!
Countplot
A countplot is a plot that takes a categorical list and returns columns that represent the number of list entries for each category.
An example of a countplot:
To initialize a countplot, we need to input at least 1 parameter: x
(the column in which values will be counted).
Note
We may also use
y
instead ofx
to change the orientation of the plot.
As the seaborn
is based on the matplotlib
, we may use a special matplotlib.pyplot
library and its function plt.show()
to show the plot:
Look at the code below!
# Importing the Seaborn import seaborn as sns # Importing the matplotlib.pyplot import matplotlib.pyplot as plt # Data list data_list = ['apple', 'fish', 'milk', 'milk', 'apple', 'apple', 'milk', 'fish', 'fish'] # Creating the countplot sns.countplot(x = data_list) # Showing the plot plt.show()
Let's solve this problem!
Task
- Import the
seaborn
library with thesns
alias. - Import the
matplotlib.pyplot
library with theplt
alias. - Initialize the x-oriented countplot for
guests_list
. - Show the plot.
Thanks for your feedback!
A countplot is a plot that takes a categorical list and returns columns that represent the number of list entries for each category.
An example of a countplot:
To initialize a countplot, we need to input at least 1 parameter: x
(the column in which values will be counted).
Note
We may also use
y
instead ofx
to change the orientation of the plot.
As the seaborn
is based on the matplotlib
, we may use a special matplotlib.pyplot
library and its function plt.show()
to show the plot:
Look at the code below!
# Importing the Seaborn import seaborn as sns # Importing the matplotlib.pyplot import matplotlib.pyplot as plt # Data list data_list = ['apple', 'fish', 'milk', 'milk', 'apple', 'apple', 'milk', 'fish', 'fish'] # Creating the countplot sns.countplot(x = data_list) # Showing the plot plt.show()
Let's solve this problem!
Task
- Import the
seaborn
library with thesns
alias. - Import the
matplotlib.pyplot
library with theplt
alias. - Initialize the x-oriented countplot for
guests_list
. - Show the plot.