matplotlib 如何根据名称为单个条形图着色[重复]

9vw9lbht  于 2023-11-22  发布在  其他
关注(0)|答案(1)|浏览(136)

此问题在此处已有答案

How to change the color of a single bar if condition is True(2个答案)
三年前就关门了。
我有下面的框架产生以下情节:

# Import pandas library 
import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
import seaborn as sns

# initialize data
data = [['tom', 10,1,'a'], ['matt', 15,5,'a'], ['Nick', 14,1,'a']]

# Create the pandas DataFrame 
df = pd.DataFrame(data, columns = ['Name', 'Attempts','Score','Category']) 
print(df.head(3))

   Name  Attempts  Score Category
0   tom        10      1        a
1  matt        15      5        a
2  Nick        14      1        a

# Initialize the matplotlib figure
sns.set()
sns.set_context("paper")
sns.axes_style({'axes.spines.left': True})

f, ax = plt.subplots(nrows=3,figsize=(8.27,11.7))

# Plot
sns.set_color_codes("muted")
sns.barplot(x="Attempts", y='Name', data=df,
            label="Total", color="b", ax=ax[0])
sns.scatterplot(x='Score',y='Name',data=df,zorder=10,color='k',edgecolor='k',ax=ax[0],legend=False)
ax[0].set_title("title")
plt.show()

字符串


的数据
我想用不同的颜色(如红色)突出显示Nick条。有简单的方法吗?

wpx232ag

wpx232ag1#

barplot方法中,可以使用palette代替参数color,并执行一个循环来检查要更改的值。

sns.barplot(x="Attempts", y='Name', data=df,
            label="Total", palette=["b" if x!='Nick' else 'r' for x in df.Name], ax=ax[0])

字符串
得到

相关问题