使用来自Seaborn的lmplot调整条件中的`hue`属性

时间:2018-09-15 19:15:50

标签: python pandas matplotlib seaborn

您好,我正在使用lmplot比较三个功能pricemakeyear。我想使用make作为感兴趣的特征并将其应用于属性色相。该情节有效。但是,如果我想添加一个条件来简化可视化并提高准确性该怎么办。我希望获得前20名的品牌,而不是像下面的图表中那样使用所有品牌 。那可能吗?帮助将不胜感激。我还提供了下面的代码。 enter image description here

"""  An lmplot is used to analyze multiple variables together there. The three variables that will be looked at here are: 
- Make 
- Price
- Year 
"""

# Setting up the plot
g = sb.lmplot(x="year", y="price", hue="make",
               truncate=True, size=10, data=carmax_data)

plt.title(' Comparing Car Make prices over the years')

0 个答案:

没有答案