0

这是我有atm的代码;

plot(V1,V2,pch = 19, main = "Changes in absolute cell volume of Chlorella Alga over a 24hr period", xlab = "Stage in 24hr cycle", ylab = "Absolute cell volume(µm^3)", xlim = c(0,24), ylim = c(32.5,188))

我希望这Chlorella部分用斜体字作为有机体的名称。有什么想法吗?

4

1 回答 1

2

利用italic( )

mn <- expression(paste("Changes in absolute cell volume of", italic(" Chlorella "), "Alga over a 24hr period"))

plot(V1,V2,pch = 19, 
     main = mn, 
     xlab = "Stage in 24hr cycle",  
     ylab = "Absolute cell volume(µm^3)",
     xlim = c(0,24), ylim = c(32.5,188))
于 2013-10-03T21:36:01.967 回答