如何使用gnuplot-py制作增强的字体和粗线?

时间:2018-06-20 18:25:47

标签: python-2.7 gnuplot

我正在尝试使用gnuplot-py(在ubuntu python 2.7上)使用标签(x和y)和字体增强(粗体)来绘制数据。到目前为止,我所做的是:

g.xlabel("Wavelength (nm)")
g.ylabel("Elipicity (mdegree)")
g('set xrange [190:260]')
g('set xtics font ", 12"')
g("set terminal svg")
g.plot(d1)

我尝试了一些Internet协议,但是它们没有起作用,例如:

{/:Bold Bold}

或:

g.xlabel("Wavelength (nm) {/Times:Bold boldface-newfont}")

但是它们都没有起作用。如何使用gnuplot-py进行更改?

0 个答案:

没有答案