我正在使用matplotlib
生成并保存SVG图像,并希望使它们尽可能重现。但是,即使在设置np.random.seed
和random.seed
之后,SVG图像中的各种id
和xlink:href
值仍会在我的代码运行之间发生变化。
我认为这些差异是由matplotlib
用于渲染SVG图像的后端引起的。有没有办法为这个后端设置种子,以便相同的图在两个不同的代码运行之间产生相同的输出?
示例代码(运行两次,在第二次运行中更改plt.savefig
中的名称):
import random
import numpy as np
import matplotlib.pyplot as plt
random.seed(42)
np.random.seed(42)
x, y = np.random.randn(4096), np.random.randn(4096)
heatmap, xedges, yedges = np.histogram2d(x, y, bins=(64,64))
fig, axis = plt.subplots()
plt.savefig("random_1.svg")
比较文件:
diff random_1.svg random_2.svg | head
35c35
< " id="md3b71b67b7" style="stroke:#000000;stroke-width:0.8;"/>
---
> " id="m7ee1b067d8" style="stroke:#000000;stroke-width:0.8;"/>
38c38
< <use style="stroke:#000000;stroke-width:0.8;" x="57.6" xlink:href="#md3b71b67b7" y="307.584"/>
---
> <use style="stroke:#000000;stroke-width:0.8;" x="57.6" xlink:href="#m7ee1b067d8" y="307.584"/>
82c82
< <use style="stroke:#000000;stroke-width:0.8;" x="129.024" xlink:href="#md3b71b67b7" y="307.584"/>
答案 0 :(得分:3)
matplotlib's rcParams中有一个选项svg.hashsalt
,似乎完全用于此目的:
# svg backend params
#svg.image_inline : True # write raster image data directly into the svg file
#svg.fonttype : 'path' # How to handle SVG fonts:
# 'none': Assume fonts are installed on the machine where the SVG will be viewed.
# 'path': Embed characters as paths -- supported by most SVG renderers
# 'svgfont': Embed characters as SVG fonts -- supported only by Chrome,
# Opera and Safari
svg.hashsalt : None # if not None, use this string as hash salt
# instead of uuid4
以下代码生成两个完全相同的文件,一直到XML ids
import numpy as np
import matplotlib as mpl
import matplotlib.pyplot as plt
mpl.rcParams['svg.hashsalt'] = 42
np.random.seed(42)
x, y = np.random.randn(4096), np.random.randn(4096)
fig, ax = plt.subplots()
ax.hist(x)
for i in [1,2]:
plt.savefig("random_{}.svg".format(i))