【发布时间】:2020-10-28 02:25:09
【问题描述】:
我使用 Python seaborn 库绘制了一个包含 15 个子图的 FacetGrid 图。 x 轴上的数据点数为 23 (0 t0 23)。我希望它们都显示在 x 轴上。 这是情节代码-
g = sns.FacetGrid(dataset, col="City",col_wrap=4 ,height=4, aspect=1.5)
g = g.map(sns.lineplot, "Block",'temp_error',color='#EE0000')
【问题讨论】: