我来自R,我对简单的单线绘图功能感兴趣。 Matplotlib比我以前参与的要多。我想知道是否有一个简单的,最小的Python绘图程序包。
作为示例,为了在Python中并排绘制条形图,我必须执行以下操作:
# set the x-axis spacing.
r1 = np.arange(len(eval(arr1)))
r2 = [x + 0.3 for x in r1]
# create plots
plt.bar(r1, arr1, width = 0.3, color = 'red', edgecolor = 'black')
plt.bar(r2, arr2, width = 0.3, color = 'blue', edgecolor = 'black')
# show plots
plt.show()
要在R中做同样的事情,我只会写:
barplot(rbind(arr1, arr2), beside = TRUE, col = c('red', 'blue'))