matplotlib Sankey箭头使用connect打印时反转

cyej8jka  于 2023-06-23  发布在  其他
关注(0)|答案(1)|浏览(149)

我尝试使用下面的matplotlib代码绘制一个Sankey图。当我尝试分别绘制它们时,代码工作正常。但是,当我合并它们时,其中一个箭头的方向在组合时是相反的。我试图排除故障,但我完全忘记了为什么会发生这种情况。有人能提供反馈吗?

  1. a = [1008590.0368940466, -368142.35465001286, -34409.668598874494, -369212.57399895444, -236736.40069105377, -89.03895515092165]
  2. b = [199910.4894048177, 15518.603443203947, 143514.46418879204, 231094.9357130916, 44.28348931634303, -590082.7762392217]
  3. from matplotlib.sankey import Sankey
  4. from matplotlib import pyplot as plt
  5. fig = plt.figure(figsize = [10,5], dpi = 300)
  6. ax = fig.add_subplot(1, 1, 1,)
  7. sankey = Sankey(ax=ax,
  8. scale=0.0000003,
  9. offset= 0,
  10. format = '%d',shoulder = 0.02)
  11. sankey.add(flows=a,
  12. labels = ['Input', 'Low', 'Medium', 'High', 'Remote (Forest)', 'Other'],
  13. orientations=[0, -1, -1, -1, 0, 1],#arrow directions,
  14. pathlengths = [0.05,0.1,0.3,0.2,0.1, 0.1],
  15. trunklength = 0.5,
  16. edgecolor = '#2b8cbe',
  17. facecolor = '#2b8cbe')
  18. diagrams = sankey.finish()
  19. for diagram in diagrams:
  20. for text in diagram.texts:
  21. text.set_fontsize(10);
  22. plt.axis("off")
  23. plt.show()
  24. fig = plt.figure(figsize = [10,5], dpi = 300)
  25. ax = fig.add_subplot(1, 1, 1,)
  26. sankey = Sankey(ax=ax,
  27. scale=0.0000006,
  28. offset= 0,
  29. format = '%d',shoulder = 0.02)
  30. sankey.add(flows=b,
  31. labels = ['Low', 'Medium', 'High', 'Remote (Forest)-I', 'Other', 'Forest-Resilience'],
  32. orientations=[-1, -1, -1, 0, 1, 0],#arrow directions,
  33. pathlengths = [0.2,0.42,0.6,0.1,0.1,0.1],
  34. trunklength = 0.5,
  35. connect = (4,3),
  36. edgecolor = '#2ca25f',
  37. facecolor = '#2ca25f')
  38. diagrams = sankey.finish()
  39. for diagram in diagrams:
  40. for text in diagram.texts:
  41. text.set_fontsize(10);
  42. plt.axis("off")
  43. plt.show()

组合地块代码:

  1. from matplotlib.sankey import Sankey
  2. from matplotlib import pyplot as plt
  3. fig = plt.figure(figsize = [10,5], dpi = 330)
  4. ax = fig.add_subplot(1, 1, 1,)
  5. sankey = Sankey(ax=ax,
  6. scale=0.0000006,
  7. offset= 0,
  8. format = '%d',shoulder = 0.02, tolerance=6000)
  9. ## Had to add tolerance, otherwise the plots would not combine
  10. sankey.add(flows=a,
  11. labels = ['Input', 'Low', 'Medium', 'High', 'Remote (Forest)', 'Other'],
  12. orientations=[0, -1, -1, -1, 0, 1],#arrow directions,
  13. pathlengths = [0.05,0.1,0.3,0.2,0.1, 0.1],
  14. trunklength = 0.5,
  15. edgecolor = '#2b8cbe',
  16. facecolor = '#2b8cbe')
  17. sankey.add(flows=b,
  18. #labels = ['Low', 'Medium', 'High', 'Remote (Forest)-I', 'Other', 'Forest-Resilience'],
  19. orientations=[-1, -1, -1, 0, 1, 0],#arrow directions,
  20. pathlengths = [0.2,0.42,0.6,0.1,0.1,0.1],
  21. trunklength = 0.5,
  22. prior =0, connect = (4,3),
  23. edgecolor = '#2ca25f',
  24. facecolor = '#2ca25f')
  25. sankey.add(flows=[b[0],-b[0]],
  26. #labels = ['Low'],
  27. orientations=[1, 1],#arrow directions,
  28. pathlengths = [0.1,0.1],
  29. trunklength = 0.27,
  30. prior = 1, connect = (0,1),
  31. edgecolor = None,
  32. facecolor = '#99d8c9', hatch = '....', zorder = -2, label = 'False', alpha = 0.2)
  33. diagrams = sankey.finish()
  34. diagrams[0].texts[4].set_position(xy=[1.1, 0.4])
  35. diagrams[1].texts[3].set_position(xy=[1.55, 0.23])
  36. diagrams[2].texts[0].set_position(xy=[1.55,-0.2])
  37. for diagram in diagrams:
  38. for text in diagram.texts:
  39. text.set_fontsize(10);
  40. plt.axis("off")
  41. plt.show()

检查 '44'(绿色) 箭头的方向。在上图和下图中方向相反)

b5buobof

b5buobof1#

44小于公差。这个流量的大小是44±6000,所以基本上你告诉它,你不知道这是一个输入还是一个输出,导致你看到的行为。
您可以将该容差设置为连接流Remote (Forest)(236736)和Remote (Forest)-I(231094)之间差异的解决方法。我建议为缺失的I添加一个流,这样就不需要依赖tolerance来捏造数字。

相关问题