我已经使用绘制了一个图
plot(data.exoplanets$loga, data.exoplanets$logMass, ylab="Log of Mass", xlab="Log of Semi Major Axis")
使用突出显示单个点
points(data.exoplanets$loga[1535], data.exoplanets$logMass[1535], col="red", pch=19)
并以此生成垂直的错误条,其中KepError是错误。
lines(rep(data.exoplanets$loga[1535],2), c(data.exoplanets$loga[1535]-KepError, data.exoplanets$loga[1535]+KepError), col="red", type="o", pch="_")
我如何调整它以给出x轴的水平误差线?
最佳答案
这将产生x轴误差线。
lines(c(data.exoplanets$loga[1535]-xerr,data.exoplanets$loga[1535]+xerr),
rep(data.exoplanets$logMass[1535],2), col="red", type="o", pch="|")
关于css - 在图形(R)的单个点上添加水平误差线,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/27808165/