def figure_plotting_space():
"""
defines the plotting space
"""
fig = plt.figure(figsize=(10,10))
bar_height = 0.04
mini_gap = 0.03
gap = 0.05
graph_height = 0.24
axH = fig.add_axes([0.1,gap+3*graph_height+2.5*mini_gap,0.87,bar_height])
axS = fig.add_axes([0.1,gap+2*graph_height+2*mini_gap,0.87,graph_height])
axV = fig.add_axes([0.1,gap+graph_height+mini_gap,0.87,graph_height])
return fig, axH, axS, axV
评论列表
文章目录