如何去除seaborn散点图顶部和底部的空白

时间:2021-07-23 11:52:31

标签: python matplotlib seaborn scatter-plot

在 y 轴上有许多刻度的散点图在顶部和底部有很大的空白,正如您在网格线中看到的那样。如何去除seaborn散点图顶部和底部的空白?

scatterplot

最小工作示例的代码:

import matplotlib.pyplot as plt
import seaborn as sns

data = sns.load_dataset("car_crashes")

plt.figure(figsize=(5, 15))
sns.set_style("whitegrid")
sns.scatterplot(
    data=data,
    x='alcohol',
    y='abbrev',
    size='ins_losses',
    legend=False,
)

plt.show()

1 个答案:

答案 0 :(得分:2)

如果您切换到面向对象的绘图风格,传递 ax,您可以轻松地获得刻度位置。然后您可以将两端的间距调整为您喜欢的任何值,例如通过更改下面代码中的 2。我认为这样做可以减少猜测,因为您正在调整刻度间隔的一部分。无论您绘制多少行,您也将获得合理的结果。

例如,以下是我的处理方式(使用较少的状态使情节更小):

import matplotlib.pyplot as plt
import seaborn as sns
sns.set_style("whitegrid")

# Get some example data.
data = sns.load_dataset("car_crashes")

# Make the plot.
fig, ax = plt.subplots(figsize=(5, 5))
sc = sns.scatterplot(data=data[:15],
                     x='alcohol',
                     y='abbrev',
                     size='ins_losses',
                     legend=False,
                     ax=ax,
                    )

# Get the first two and last y-tick positions.
miny, nexty, *_, maxy = ax.get_yticks()

# Compute half the y-tick interval (for example).
eps = (nexty - miny) / 2  # <-- Your choice.

# Adjust the limits.
ax.set_ylim(maxy+eps, miny-eps)

plt.show()

这给出:

enter image description here