Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.0k views
in Technique[技术] by (71.8m points)

string - R ggplot2 Add today's date to the title

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!

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

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 = " ")) 

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...