Displaying 1 result from an estimated 1 matches for "lnflux".
Did you mean:
influx
2010 Mar 02
0
plotting fitted lme values as a smooth line
...xponential relationship between temperature and soil
respiration.
In the plot, the x-axis has temperature, and the y-axis has soil
respiration. When I try to add a line showing temperature versus the
fitted values, it is jagged and not smooth.
Here is the code I used:
lme.1<-lme(fixed=LnFlux~Temp, random=~1|Plt, data=resp)
fit.1<-exp(fitted(lme.1))
plot(Flux$Temp, Flux$Flux, xlab="Temperature",
ylab=expression("CO"[2]*"Flux"), xlim=c(-10, 25), ylim=c(0,250), pch=16)
ord1<-order(CFlux$Temp)
lines(CFlux$TempC[ord1], fit.1[ord1], lty=1, lwd=2)
This...