最佳答案
我使用 Seborn 和一个熊猫数据框架(data
)创建了这个情节:
我的代码:
g = sns.lmplot('credibility', 'percentWatched', data=data, hue = 'millennial', markers = ["+", "."], x_jitter = True, y_jitter = True, size=5)
g.set(xlabel = 'Credibility Ranking\n ← Low High →', ylabel = 'Percent of Video Watched [%]')
你可能会注意到,图的图例标题仅仅是变量名(‘ Millennium’) ,图例项是变量的值(0,1)。如何编辑图例的标题和标签?理想情况下,传奇的标题应该是“一代”,标签应该是“千禧一代”和“老一代”