2017-02-20 62 views
0

比方說,我們有以下數據集:根據浮動變量指定色標

a b c 
s 1 10 
s 2 20 
ss 1 30 
ss 2 40 

我們繪製它是這樣的:

require(ggplot2) 
data <- read.table("data.stats", sep = "\t", header = TRUE) 
ggplot(data, aes(b, c, color=a)) + 
    stat_summary(fun.y=median, geom="line") 
dev.off() 

這是結果:

enter image description here

但我的實際數據集,而不是字符串爲a co ntains浮動數字。所以它可能看起來像這樣:

a b c 
0.1 1 10 
0.1 2 20 
0.5 1 30 
0.5 2 40 

如果我嘗試運行相同的代碼,但是我得到一條直線作爲輸出。

enter image description here

如何使[R治療a彷彿數字字符串?

回答

0
> data.frame(a = c(0.1,0.1,0.5,0.5), 
      b = c(1,2,1,2), c = c(10,20,30,40) 
      ) %>% dplyr::mutate(a = as.character(a)) %>% ggplot(., 
      aes(b, c, color=a)) + stat_summary(fun.y=median, geom="line") 

enter image description here