I have made my own code trying to find any differences but I don´t know where is the trick, here is one catplot that display well:
import matplotlib.pyplot as plt
import seaborn as sns
import pandas as pd
# Change the color palette to "RdBu"
par_ad = {
"Parents advice":[1,2,3,3,4,5,4,3,1,1,1,1,1,2,3,5,2,1,3,4]
}
df = pd.DataFrame(par_ad)
sns.set_style("whitegrid")
sns.set_palette("RdBu")
# Create a count plot of survey responses
sns.catplot(x="Parents advice",
data=df,
kind="count")
# Show plot
plt.show()
On the other hand I have been working with a .csv and using orders inside it. Why it doesn´t show the bars? The code, the .csv belongs to a Datacamp course about Seaborn, it doesn´t throw any error apart from not displaying the bars. First line in .csv is the categories, where one of them is "Parents' advice" and the other lines are ints between 1 to 5 that are equivalent to the number of times where students ask for help from their parents.
import seaborn as sns
import pandas as pd
# Change the color palette to "RdBu"
survey_data = pd.read_csv("young-people-survey-responses.csv")
sns.set_style("whitegrid")
sns.set_palette("RdBu")
# Create a count plot of survey responses
category_order = ["Never", "Rarely", "Sometimes",
"Often", "Always"]
sns.catplot(x="Parents' advice",
data=survey_data,
kind="count",
order=category_order)
# Show plot
plt.show()
How is
sns
supposed to know that"Never"
equals1
,"Rarely"
equals2
, and so on?Option 1
range(1,6)
to theorder
parameter and useax.set_xticklabels
to overwrite the range values.Result:
Option 2
Series.map
to change the range values into your string values and make the column categorical usingpd.Categorical
before passing it tosns.catplot
.