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