- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我有一组数据存储在 pandas 数据框中。我正在尝试使用 seaborn 的 pointplot() 创建具有连接点的多系列散点图。每个系列都有不同的 (x,y) 值,它们在我的数据框中存储为 float 。每行都有一个标签,用于区分每个系列。我使用的是 Python 2.7、seaborn 版本 0.5.1 和 matplotlib 版本 1.4.3。
我设法找到的一切都告诉我,我可以通过以下方式实现这一目标:
import matplotlib.pyplot as plt
import seaborn as sns
# Suppose my dataframe is called 'df', with columns 'x', 'y', and 'label'.
sns.pointplot(x = 'x', y = 'y', hue = 'label', data = df)
但是,这会导致一些奇怪的行为:
我试图通过将我的数据框分成几部分来解决这个问题。这并不理想,因为我可能要同时绘制大约 10 个以上的系列,而且我不希望手动拆分数据:
df1 = df[df.test_type.values == "label 1"]
df2 = df[df.test_type.values == "label 2"]
ax = sns.pointplot(x = 'x',y='y', color = "blue", data = df1)
sns.pointplot(x = 'x', y = 'y', data = df2, color="red", ax = ax)
在这种情况下,所有的点都连接在一起并且它们被适本地着色,但是 x 轴再次表现出非常奇怪的行为。尽管每个数据框中的 x 值不同,但绘图将它们对齐,使它们看起来相同。
现在,我不确定如何清楚地发布我的输出/图表,但我的一些问题可以通过以下方式重现:
#import the necessary modules
import matplotlib.pyplot as plt
import pandas as pd
import seaborn as sns
#Here is some sample data. The 'x2' data is slightly offset from 'x1'
x1 = range(0,100,10)
x2 = range(1,100,10)
x = x1+x2
#The y-values I generate here mimic the general shape of my actual data
y1 = x1[::-1]
y2 = [i+25 for i in x1[::-1]]
y = y1+y2
#Two levels of labels that will be applied to the data
z1 = ["1"]*10
z2 = ["2"]*10
z = z1+z2
#A pandas data frame from the above data
df = pd.DataFrame({'x': x, 'y': y, 'z': z})
#Pointplot using the above data
sns.pointplot(x = 'x', y = 'y', data = df, hue = 'z')
运行此代码会产生以下结果:
总结一下我的问题:
是否有一种更简单/更好/更优雅的方法来使用存储在 pandas 数据框中的数据绘制具有连接点的多系列散点图? Seaborn 的点图看起来很理想,但它并没有像我预期的那样运行,我怀疑它的用途可能与我需要完成的不同。我对可以实现此目的的其他解决方案持开放态度(最好使用 python)。
提前致谢。如果我能弄清楚如何从我的代码上传输出和绘图,我会更新我的问题。
我是 100% 的 stackoverflow 新手。我很想通过发布我的代码生成的图来澄清我的问题,但我无法弄清楚。任何有关如何执行此操作的指示也将不胜感激,以便我可以更新问题。
编辑:事实证明,seaborn 的点图使用 x 轴作为分类轴,这解释了我上面提到的奇怪行为。有没有办法手动将 x 轴行为从分类更改为数字?这似乎是最简单的方法,但我不太熟悉 python 中的微调图。
最佳答案
我有一个类似的问题,我最终使用 Seaborn 的 FacetGrid 解决了它.我将 plt.scatter 用于点,将 plt.plot 用于连接点的线。
g = sns.FacetGrid(df, hue="z", size=8)
g.map(plt.scatter, "x", "y")
g.map(plt.plot, "x", "y")
请注意,这是在 Seaborn 版本 0.6.0 和版本 0.5.1 中完成的。
关于python - 如何使用 seaborn 创建具有连接点的多个系列散点图?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33423758/
我是一名优秀的程序员,十分优秀!