IV=time
我用,创建了一个散点图(多组 GRP)DV=concentration
。我想将分位数回归曲线添加(0.025,0.05,0.5,0.95,0.975)
到我的图中。
顺便说一句,这就是我创建散点图的方法:
attach(E) ## E is the name I gave to my data
## Change Group to factor so that may work with levels in the legend
Group<-as.character(Group)
Group<-as.factor(Group)
## Make the colored scatter-plot
mycolors = c('red','orange','green','cornflowerblue')
plot(Time,Concentration,main="Template",xlab="Time",ylab="Concentration",pch=18,col=mycolors[Group])
## This also works identically
## with(E,plot(Time,Concentration,col=mycolors[Group],main="Template",xlab="Time",ylab="Concentration",pch=18))
## Use identify to identify each point by group number (to check)
## identify(Time,Concentration,col=mycolors[Group],labels=Group)
## Press Esc or press Stop to stop identify function
## Create legend
## Use locator(n=1,type="o") to find the point to align top left of legend box
legend('topright',legend=levels(Group),col=mycolors,pch=18,title='Group')
因为我在这里创建的数据是我的较大数据的一小部分,所以它看起来可以近似为一个矩形双曲线。但我还不想称我的自变量和因变量之间存在数学关系。
我认为nlrq
从包quantreg
中可能是答案,但是当我不知道我的变量之间的关系时,我不明白如何使用该函数。
我从一篇科学文章中找到了这张图,我想做完全相同的图:
再次感谢您的帮助!
更新
Test.csv 有人指出我的样本数据不可重现。这是我的数据示例。
library(evd)
qcbvnonpar(p=c(0.025,0.05,0.5,0.95,0.975),cbind(TAD,DV),epmar=T,plot=F,add=T)
我也试过 qcbvnonpar::evd,但曲线似乎不是很平滑。