我正在尝试使用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进行更改?