ggtern错误-f(...,self = self)错误:未使用的参数(plot $ coordinates)

时间:2018-08-11 23:05:39

标签: r ggplot2 ggtern

为什么我会收到此错误?我什至在下面尝试了一个简单的模拟示例,但仍然出现错误。模拟示例的链接-Making a ternary plot

x  <- data.frame(
  x1 = c( 0, 0, 1, 0.1, 0.6, 0.2 ),
  x2 = c( 0, 1, 0, 0.3, 0.2, 0.8 ),
  x3 = c( 1, 0, 0, 0.6, 0.2, 0.0 )
)

library(ggtern)
ggtern(data=x,aes(x1,x2,x3)) + 
  geom_point(fill="red",shape=21,size=4)

出现以下错误:

  

f(...,self = self)错误:未使用的参数(plot $ coordinates)

有人可以帮我吗?

1 个答案:

答案 0 :(得分:1)

降级到ggplot2的先前版本(2.2.1)。 solution