如何更改ggtern制作的三元图标签?

时间:2015-11-23 14:43:16

标签: r ggplot2

我正在尝试用ggtern制作三元图。它看起来很漂亮。但它只显示三角形边缘的百分比,例如100,90 ...... 有没有办法改变它以显示下划线数据的真正价值?谢谢。 我从这篇文章中找到了这个例子。 The original Post

数据如下:

a <- c(0.1, 0.5,0.5, 0.6, 0.2, 0 , 0 , 0.004166667, 0.45) b <- c(0.75,0.5,0 , 0.1, 0.2, 0.951612903,0.918103448, 0.7875 , 0.45) c <- c(0.15,0 ,0.5, 0.3, 0.6, 0.048387097,0.081896552, 0.208333333, 0.10) d <- c(500,2324.90,2551.44,1244.50, 551.22,-644.20,-377.17,-100, 2493.04)

这里a,b,c用作坐标。我想要的是将这些休息标记为0.1,0.2(切割值不是像10,20这样的百分比......)。

enter image description here

1 个答案:

答案 0 :(得分:2)

本周有人给我写了一个问题,这就是我认为你所追求的问题,也许这就是你的意思?

library(ggtern)
set.seed(1)
df = data.frame(x=runif(10),y=runif(10),z=runif(10))

#Normalise sum to unity
df.s = rowSums(df); for(x in c('x','y','z')) df[,x] = df[,x]/df.s

labFnc <- function(x,digits=2) format(round(unique(x),digits),digits=digits)

#Plot
ggtern(df,aes(x,y,z)) +
  scale_T_continuous(breaks=unique(df$y),labels=labFnc(df$y)) +
  scale_L_continuous(breaks=unique(df$x),labels=labFnc(df$x)) +
  scale_R_continuous(breaks=unique(df$z),labels=labFnc(df$y)) +
  theme_bw() +
  theme_nogrid_minor() + 
  geom_point() +
  labs(title="Example Use of Data Along Ternary Axes")

result

使用ggtern 2.1.0提供的geom_Xmark()(X = T,L,R)新几何可以进一步采用这一点:

#Plot
ggtern(df,aes(x,y,z)) +
  scale_T_continuous(breaks=unique(df$y),labels=labFnc(df$y)) +
  scale_L_continuous(breaks=unique(df$x),labels=labFnc(df$x)) +
  scale_R_continuous(breaks=unique(df$z),labels=labFnc(df$y)) +
  theme_rgbw() +
  theme_nogrid() +  
  geom_Lmark(colour='darkblue') + 
  geom_Tmark(colour='darkred') +
  geom_Rmark(colour='darkgreen') + 
  geom_point() +
  labs(title="Example Use of Data Along Ternary Axes")

exampleXmark