英文: How to scale histplot data 问题 我正在尝试绘制数据 pa 的直方图。 我编写了以下代码: pa = np.array(pa) scale = l ** 2 pa /...
如何根据我已知的分割线获得具有多个背景颜色的散点图?
英文: How do I get a scatterplot with multiple background colors based on the split lines I already kn...
如何向热图添加图例
英文: How to add a legend to a heatmap 问题 我使用了这个 非常好的代码 的一个小变化来绘制热图。 import matplotlib import seaborn ...
只绘制热图的颜色条部分。
英文: How can I plot just the colorbar of a heatmap? 问题 你可以只绘制色条而不绘制热力图本身,可以使用以下代码: import seaborn as ...
为什么在动画 GIF 中没有使用完整的调色板?
英文: Why isn't the full palette being used in an animated gif? 问题 I'm here to provide the transla...
热图的纵轴错误。
英文: y-axis of heatmap is wrong 问题 以下是要翻译的内容: 我用于创建热图的代码是 heat = sns.heatmap(data=df_scaled) plt.show...
不同变量的不同X轴标签
英文: Different X Labels for Different Variables 问题 我有两个数据框,分别是 t1 和 t2。我想要使用 for 循环绘制 seaborn 图,每个变量都...
创建一个 “足球场图表”
英文: Creating a "FootBall Field Chart" 问题 我有一个由以下列组成的DataFrame: VP-ID, MotivA_MotivatorA_In...
为什么不能叠加小提琴图和折线图?
英文: Why can't I overlay a violinplot and a lineplot? 问题 看起来Seaborn对显示的轴标签进行了许多调整,因此我无法在上面叠加“常规”m...
设置xticks会将所有的柱子移到图的左侧。
英文: Setting xticks moves all bars to the left side of the figure 问题 我正在尝试设置每10年的x轴刻度标签。然而,当设置x轴刻度范围时...
7