我使用ggplot2在r中組成了一個圖。代碼如下。我的數據集是net_d。比率在0.5 - 1.0之間變化。 D2變爲從10 - 1ggplot x軸刻度標記標籤
p<-ggplot(net_d,aes(Ratio,D2))
p<-p+geom_point()+geom_line()
p<-p+xlab("Multiples of degrees of nodes within community to between community")
p<-p+ylab("Faction of vertices classfied correctly")
#p<-p+scale_x_continuous(breaks=c(seq(10,1,by=-1)))
p<-p+xlim(10,1)+ylim(0.5,1)
p<-p+theme_set(theme_grey())
print(p)
我需要有沿x軸10的標籤 - 1,通過1步驟因此,在情節的每個點將具有在x處的相應刻度標記-軸。我有評論可能的解決方案。但是,將標籤逆轉爲1-10。我需要其他方式。
'scale_x_reverse'是關鍵 – akalanka