Contenido del Curso
First Dive into seaborn Visualization
First Dive into seaborn Visualization
1. Nice to Meet you, seaborn!
Adding the Plot Title
Plotting in the seaborn
can be used to create 2 types of plots: FacetGrids and AxesSubplots.
We have learned only plots of the AxesSubplots type, so we will learn how to customize only plots of the corresponding type.
To add the title you need to:
- Declare a plot variable;
- Add the title.
# Importing libraries needed import seaborn as sns import matplotlib.pyplot as plt import pandas as pd # Reading the file df = pd.read_csv('https://codefinity-content-media.s3.eu-west-1.amazonaws.com/c5b4ea8f-8a30-439f-9625-ddf2effbd9ac/example3.csv') # Creating the countplot and declaring the variable g = sns.countplot(x = 'food', data = df) # Setting the title g.set_title('Food') # Showing the plot plt.show()
Tarea
Swipe to begin your solution
- Import the
seaborn
withsns
alias. - Import the
matplotlib.pyplot
withplt
alias. - Import the
pandas
withpd
alias. - Read the file using
df
variable. - Create a histplot variable
g
. - Set the title
'Fish'
. - Show the plot.
Solución
Cambia al escritorio para practicar en el mundo realContinúe desde donde se encuentra utilizando una de las siguientes opciones
¿Todo estuvo claro?
¡Gracias por tus comentarios!
Sección 3. Capítulo 2
Adding the Plot Title
Plotting in the seaborn
can be used to create 2 types of plots: FacetGrids and AxesSubplots.
We have learned only plots of the AxesSubplots type, so we will learn how to customize only plots of the corresponding type.
To add the title you need to:
- Declare a plot variable;
- Add the title.
# Importing libraries needed import seaborn as sns import matplotlib.pyplot as plt import pandas as pd # Reading the file df = pd.read_csv('https://codefinity-content-media.s3.eu-west-1.amazonaws.com/c5b4ea8f-8a30-439f-9625-ddf2effbd9ac/example3.csv') # Creating the countplot and declaring the variable g = sns.countplot(x = 'food', data = df) # Setting the title g.set_title('Food') # Showing the plot plt.show()
Tarea
Swipe to begin your solution
- Import the
seaborn
withsns
alias. - Import the
matplotlib.pyplot
withplt
alias. - Import the
pandas
withpd
alias. - Read the file using
df
variable. - Create a histplot variable
g
. - Set the title
'Fish'
. - Show the plot.
Solución
Cambia al escritorio para practicar en el mundo realContinúe desde donde se encuentra utilizando una de las siguientes opciones
¿Todo estuvo claro?
¡Gracias por tus comentarios!
Sección 3. Capítulo 2
Cambia al escritorio para practicar en el mundo realContinúe desde donde se encuentra utilizando una de las siguientes opciones