I am trying to make a triple plot with ggtern. It looks very pretty. But it only shows the percentage at the edges of the triangle, for example 100, 90 ... Is there a way to change this to show the real value of the underline data? Thank you I will tell an example from this post. Original post
The data looks like this:
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)
Here a, b, c are used as coordinates. What I want is to break breaks like 0.1, 0.2 (slice values are not the same as 10.20 ...).
