0

これが私が持っているコードです。

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 に答える