我使用triax.plot创建了一个三元图。
require(plotrix)
data <- read.csv("~/R/datasets/data.csv")
triax.plot(data[1:18721,],main="ternary plot", tick.labels=list(b=seq(10,90,by=10),l=seq(10,90,by=10),r=seq(10,90,by=10)), pch=4)
但是,大多数数据形成了一个我想要更详细显示的集群。我想编辑轴范围(不是标签,而不是刻度线),只显示原始图的相关区域
highlighted in this image。得到的剪辑也将是等腰三角形。
显然triax.plot没有选择。或者我错过了什么?对于替代方法的任何建议表示赞赏。提前谢谢!