我正在尝试使用matplotlib中的堆积条来可视化UCI成人收入数据集的年龄和收入。不幸的是,结果并不像我预期的那样。
在R中,代码是这样的
library(ggplot2)
ggplot(adult, aes(age)) + geom_histogram(aes(fill = income), color = "black",binwidth = 1)
结果就是这样
我正在使用以下代码:
plt.figure(figsize=(16, 8))
plt.hist(adult.age, bins=10, normed=None, histtype='bar', stacked=True)
plt.show()
你们能指出我错了吗?
谢谢