 Adding the Plot Title
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.
12345678910111213141516# 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()
Opgave
Swipe to start coding
- Import the seabornwithsnsalias.
- Import the matplotlib.pyplotwithpltalias.
- Import the pandaswithpdalias.
- Read the file using dfvariable.
- Create a histplot variable g.
- Set the title 'Fish'.
- Show the plot.
Løsning
Var alt klart?
Tak for dine kommentarer!
Sektion 3. Kapitel 2
single
Spørg AI
Spørg AI
Spørg om hvad som helst eller prøv et af de foreslåede spørgsmål for at starte vores chat
Awesome!
Completion rate improved to 5.88 Adding the Plot Title
Adding the Plot Title
Stryg for at vise menuen
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.
12345678910111213141516# 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()
Opgave
Swipe to start coding
- Import the seabornwithsnsalias.
- Import the matplotlib.pyplotwithpltalias.
- Import the pandaswithpdalias.
- Read the file using dfvariable.
- Create a histplot variable g.
- Set the title 'Fish'.
- Show the plot.
Løsning
Var alt klart?
Tak for dine kommentarer!
Sektion 3. Kapitel 2
single