我想在我的绘图工作流程中集成一些包含补丁的图形。我使用matplotlib补丁生成了它们,并尝试使用plotly.tools.mpl_to_plotly变换图。但是,似乎只有常规图可以使用此功能进行转换,我的补丁丢失了。 有什么方法可以将包含地块的补丁转换为plotly? 使用matplotlib页面中的示例代码的最小(非)工作示例:
import numpy as np
from matplotlib.path import Path
from matplotlib.patches import PathPatch
import matplotlib.pyplot as plt
import plotly.tools as tls
vertices = []
codes = []
codes = [Path.MOVETO] + [Path.LINETO]*3 + [Path.CLOSEPOLY]
vertices = [(1, 1), (1, 2), (2, 2), (2, 1), (0, 0)]
codes += [Path.MOVETO] + [Path.LINETO]*2 + [Path.CLOSEPOLY]
vertices += [(4, 4), (5, 5), (5, 4), (0, 0)]
vertices = np.array(vertices, float)
path = Path(vertices, codes)
pathpatch = PathPatch(path, facecolor='None', edgecolor='green')
fig, ax = plt.subplots()
ax.add_patch(pathpatch)
ax.set_title('A compound path')
ax.autoscale_view()
import plotly.tools as tls
tls.mpl_to_plotly(fig)
谢谢!