如何在matplotlib-plotx-label
中设置和,将它们作为参数传递给函数。y-label
plot()
基本上我想做这样的事情:
def plot_something(data, plot_conf):
data.plot(**plot_conf)
...do some other stuff...
plot_conf = {'title': 'Blabla', 'xlabel':'Time (s)', 'ylabel': 'Speed (m/s)'}
plot_something(data,plot_conf)
我不想使用任何额外的函数调用,比如xlabel()