繁体   English   中英

使用误差条图旋转 matplotlib 标记

[英]Rotate matplotlib markers with errorbar plot

我正在按照这个答案来旋转预先存在的 matplotlib 标记。

但是,那里的解决方案不适用于误差条图。 这是一个简单的example.py

#!/usr/bin/env python3

import matplotlib.pyplot as plt
from matplotlib.markers import MarkerStyle

# I want to use this marker in an errorbar plot
m = MarkerStyle("D")
m._transform.scale(1.0, 0.6)

# I can use it in a scatter plot
fig, ax = plt.subplots()
plt.scatter([1,2,3],[1,2,3], s=225, marker="d")
plt.scatter([1,2,3],[2,3,4], s=225, marker=m, color="crimson")
plt.show()
# which produces a figure similar to https://stackoverflow.com/a/49662571/

# But when I use it in errorbar
fix, ax = plt.subplots()
plt.errorbar([1,2,3],[3,4,5], yerr=[0.5,0.5,0.5], marker=m, color='green')
plt.show()

# I get
#>Traceback (most recent call last):
#>  File "./example.py", line 19, in <module>
#>    plt.errorbar([1,2,3],[3,4,5], yerr=[0.5,0.5,0.5], marker=m, color='green')
#>  File "/usr/local/lib/python3.8/site-packages/matplotlib/pyplot.py", line 2524, in errorbar
#>    return gca().errorbar(
#>  File "/usr/local/lib/python3.8/site-packages/matplotlib/__init__.py", line 1565, in inner
#>    return func(ax, *map(sanitize_sequence, args), **kwargs)
#>  File "/usr/local/lib/python3.8/site-packages/matplotlib/axes/_axes.py", line 3265, in errorbar
#>    data_line = mlines.Line2D(x, y, **plot_line_style)
#>  File "/usr/local/lib/python3.8/site-packages/matplotlib/lines.py", line 378, in __init__
#>    self._marker = MarkerStyle(marker, fillstyle)
#>  File "/usr/local/lib/python3.8/site-packages/matplotlib/markers.py", line 225, in __init__
#>    self.set_marker(marker)
#>  File "/usr/local/lib/python3.8/site-packages/matplotlib/markers.py", line 289, in set_marker
#>    Path(marker)
#>  File "/usr/local/lib/python3.8/site-packages/matplotlib/path.py", line 127, in __init__
#>    vertices = _to_unmasked_float_array(vertices)
#>  File "/usr/local/lib/python3.8/site-packages/matplotlib/cbook/__init__.py", line 1317, in _to_unmasked_float_array
#>    return np.asarray(x, float)
#>  File "/usr/local/lib/python3.8/site-packages/numpy/core/_asarray.py", line 83, in asarray
#>    return array(a, dtype, copy=False, order=order)
#>TypeError: float() argument must be a string or a number, not 'MarkerStyle'

问:如何在误差条图中使用旋转的预先存在的 matplotlib 标记(或者,可能是任何 MarkerStyle 标记)? (真的,我想要thin_diamond旋转 90°。)

有趣,我不知道为什么它是这样设计的。 解决方法是绘制单独的散点图:

fix, ax = plt.subplots()

plt.errorbar([1,2,3],[3,4,5], yerr=[0.5,0.5,0.5], marker=None, color='green')
plt.scatter([1,2,3],[3,4,5], s=225, marker=m, color="green")

plt.show()

输出:

在此处输入图片说明

结果证明这是两个错误。 PR #16692 中修复了一个被合并到 matplotlib 3.3.0(我使用的是 3.2.2)。 另一个必须修复,将在 3.4.0 中。 如果你现在需要这个功能,你可能想根据这个 diff修补你的matplotlib/markers.py

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM