Trying to make a simple plot and there is a large gap between the first and second data points (0 and 10)
hatch <- drm(ha_.~leachate, data=data, fct = LL.3())
plot(hatch,
xlim=c(0,500),ylim=c(0,100),
xlab="Leachate Concentration (%)",ylab="Hatch Rate (%)", col = color1)
plot(hatch, type="confidence", col = color1, add=TRUE)
I tried to manually assign tick marks, which worked but did not resolve the gap issue
hatch <- drm(ha_.~leachate, data=data, fct = LL.3())
plot(hatch,
xlim=c(0,500),ylim=c(0,100),
xlab="Leachate Concentration (%)",ylab="Hatch Rate (%)", col = color1)
plot(hatch, type="confidence", col = color1, add=TRUE)
axis(1, at = c(25, 50, 75, 100))