0

我想将 matplotlib 散点图导出为 SVG,每个散点都有不同的超链接,这些散点不是简单的标记,而是 Unicode 字符。

我尝试了以下方法:

import matplotlib.cm as cm
import matplotlib as mpl
import matplotlib.pyplot as pyplot
mpl.rcParams['text.usetex'] = True
mpl.rcParams['text.latex.preamble'] = [r'\usepackage{amsmath}'] #for \text command

f = pyplot.figure()
stemp='6F22'
markerstring=r'$\\unichar{"%s}$' % stemp
print(markerstring)
ss = pyplot.scatter([1, 2, 3], [4, 5, 6],color='black',s=[100, 0, 0],alpha=0.5, marker=markerstring)
ss.set_urls(['http://www.bbc.co.uk/news', 'http://www.google.com', None])
f.savefig('scatter.svg')
  • 它要么崩溃,因为“\u”或“\unichar”是未知的

  • 或者在最终的SVG中显示6F22而不是汉

4

0 回答 0