在 sns.swarmplot 中设置 xticks

Setting xticks in sns.swarmplot

我在 swarmplot 中设置 xticks 和在 seaborn 中设置 pointplot 时遇到一些问题(尽管使用传统 plt.plot 没问题)。当我使用像这样的典型命令时:

plt.xticks([2,3,4,5,6,7,8])

或:

ax2.xaxis.set_major_locator(ticker.LinearLocator(8))

xticks 只是在一个很短的范围内,没有覆盖整个 x 轴。 https://imgur.com/c3MxEfv

(图像上的左侧子图)。当我不输入 plt.xticks(... 然后我在右边的子图中得到类似的东西。

我的代码在这里:

import numpy as np
import pandas as pd
import seaborn as sns
import matplotlib.pyplot as plt
import matplotlib.ticker as ticker

df = pd.read_csv('dane/iris.csv')
df['Legend'] = df['variety']
df['variety'].replace( {'Setosa':1, 'Versicolor':2, 'Virginica':3}, inplace = True)

fig = plt.figure(figsize = (13,7), facecolor = 'white')

ax1 = fig.add_subplot(1,2,1)
sns.swarmplot(df['sepal.length'], df['sepal.width'], hue = df['Legend'], ax = ax1)
plt.xlabel('Sepal length', fontsize = 14)
plt.ylabel('Sepal width', fontsize = 14)
plt.xticks([])
plt.xticks([2,3,4,5,6,7,8])

ax2 = fig.add_subplot(122)
sns.swarmplot(df['petal.length'], df['petal.width'], hue = df['Legend'], ax = ax2)
plt.xlabel('Petal length', fontsize = 14)
plt.ylabel('Petal width', fontsize = 14)

plt.savefig(Figure = fig, fname = 'iris.png')

swarmplot 是分类图。它在 x 轴上绘制类别。使用 plt.xticks([2,3,4,5,6,7,8]) 您正在为类别 2 到 8 设置刻度,但您的图中还有更多类别。

对于正在使用的数据,它看起来不像分类图,实际上很有用。您可能更愿意使用散点图,它是两个维度的数字图。

您可以改用 ax.scatter() or sns.scatterplot()