Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试仅绘制三元图的一角(我的所有数据都驻留在其中),但似乎无法使用scale_"X"_continuous(limits=c(0,20)),将“X”分别设置为 T、L 和 R。
scale_"X"_continuous(limits=c(0,20))
指向虚拟数据集的 Dropbox 链接
这是我正在制作的人物的样子。如果可能的话,我想绘制那个最小的三角形。我假设我错误地定义了限制,因为我收到一条错误消息,指出“错误:无效的三元限制,每个点必须总和为 Unity...”
scale_X_continous()限制参数似乎需要值 < 1 才能工作。这可以满足您的要求:
scale_X_continous()
ggtern(data=dummy,aes(x=x,y=y,z=z,col=type)) + geom_point() + scale_T_continuous(limits=c(0,.2))+ scale_L_continuous(limits=c(0,.2))+ scale_R_continuous(limits=c(0.8,1))