Plotnine 中的错误栏
Errorbars in Plotnine
我有以下 Python plotnine 代码:
ggplot(df)
+ geom_point(aes("Distance", "Force"), size=2)
+ geom_path(aes("xfit", "yfit"))
其中 Distance、Force、xfit 和 yfit 只是我的数据框中的值列表。
产生这个情节:
我正在尝试为所有点添加误差线。这样做的方法似乎是使用:+ geom_errorbar()
,在带有 ggplot2 的 R 中非常简单:geom_errorbar(ymin = Length - yerr, ymax = Length + yerr)
。但是,我无法让它在 python 中与 plotnine 一起工作,而且似乎没有任何使用错误栏的代码示例。
Here is the documentation on the function。不过我觉得它没有帮助。
TyberiusPrime on GitHub answered the question here. 我会在下面粘贴答案,以防它因某种原因从 GitHub 中消失。我问的问题和这里一样。
它在 plotnine 中同样直接,使用字符串而不是替代评估。请注意,您已在 geom_point 而不是绘图上定义了 aes,因此您必须将 x 值告知错误栏。
from plotnine import *
import pandas as pd
df = pd.DataFrame({"Distance": [1,2,3], 'Force': [4,5.5,6], 'yerr': [0.1, 0.5, 3]})
ggplot(df) + geom_point(aes("Distance", "Force"), size=2) + geom_errorbar(aes(x="Distance", ymin="Force-yerr",ymax="Force+yerr"))
我有以下 Python plotnine 代码:
ggplot(df)
+ geom_point(aes("Distance", "Force"), size=2)
+ geom_path(aes("xfit", "yfit"))
其中 Distance、Force、xfit 和 yfit 只是我的数据框中的值列表。
产生这个情节:
我正在尝试为所有点添加误差线。这样做的方法似乎是使用:+ geom_errorbar()
,在带有 ggplot2 的 R 中非常简单:geom_errorbar(ymin = Length - yerr, ymax = Length + yerr)
。但是,我无法让它在 python 中与 plotnine 一起工作,而且似乎没有任何使用错误栏的代码示例。
Here is the documentation on the function。不过我觉得它没有帮助。
TyberiusPrime on GitHub answered the question here. 我会在下面粘贴答案,以防它因某种原因从 GitHub 中消失。我问的问题和这里一样。
它在 plotnine 中同样直接,使用字符串而不是替代评估。请注意,您已在 geom_point 而不是绘图上定义了 aes,因此您必须将 x 值告知错误栏。
from plotnine import *
import pandas as pd
df = pd.DataFrame({"Distance": [1,2,3], 'Force': [4,5.5,6], 'yerr': [0.1, 0.5, 3]})
ggplot(df) + geom_point(aes("Distance", "Force"), size=2) + geom_errorbar(aes(x="Distance", ymin="Force-yerr",ymax="Force+yerr"))