我正在尝试使用ggtern包来绘制一些图。它曾经在 ggplot2 上运行,但现在它不起作用并破坏了 ggplot2。
当我运行以下命令时:
library(ggplot2)
qplot(1,2)
library(ggtern)
qplot(3,4)
df = data.frame(x = runif(50),
y = runif(50),
z = runif(50),
Value = runif(50,1,10),
Group = as.factor(round(runif(50,1,2))))
ggtern(data=df,aes(x,y,z,color=Group)) +
theme_rgbw() +
geom_point() + geom_path() +
labs(x="X",y="Y",z="Z",title="Title")
qplot(1,2)
工作得很好,library(ggtern)
给了我这个(可能与问题有关,也可能无关):
Attaching package: ‘ggtern’
The following objects are masked from ‘package:ggplot2’:
%+%, %+replace%, aes, calc_element, Geom, geom_segment, ggplot_build,
ggplot_gtable, ggsave, theme, theme_bw, theme_classic, theme_get, theme_gray,
theme_grey, theme_minimal, theme_set, theme_update
qplot(3,4)
失败了:
Error in FUN(X[[i]], ...) : attempt to apply non-function
如果我将其注释掉并到达ggtern(...
我得到这个:
Error in coord_tern() : could not find function "coord"
显然,有些不对劲。我从哪里开始寻找问题所在?这是什么功能coord
,为什么消失了?