Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要在 python 条形图的 x 轴 ggplot 上格式化日期。
我该怎么做?
使用 scale_x_date() 在 x 轴上格式化日期。
p = ggplot(aes(x='date'), data) + geom_bar() + scale_x_date(labels='%m-%Y')
这给出了月份和年份的数字,例如,01-1990 您可以尝试其他格式。