R ggplot2 Add today's date to the title

痞子三分冷 提交于 2021-02-13 17:34:21

问题


In principle, I'm sure this is straightforward....

How do I append today's date to my ggplot title?

today.date <- Sys.Date() 
labs(title='Daily New COVID-19 Hospitalizations as of ', x=....)

In other words, what's the R / ggplot syntax to append today.date to my plot title? Am I better off using ggtitle rather than labs for the title -- does that make it easier?

Thank you!


回答1:


Both with labs and ggtitle you can use function paste() as follows:

labs(title = paste('Daily New COVID-19 Hospitalizations as of', today.date, sep = " "))

or

ggtitle(paste('Daily New COVID-19 Hospitalizations as of', today.date, sep = " ")) 


来源:https://stackoverflow.com/questions/62583696/r-ggplot2-add-todays-date-to-the-title

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!