1

我想在我的绘图工作流程中集成一些包含补丁的图形。我使用 matplotlib 补丁生成它们并尝试使用 plotly.tools.mpl_to_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)

谢谢!

4

0 回答 0