I am using the baseline package in R and just working through the documentation. Their example code produces the following image.
data(milk)
bc.irls <- baseline(milk$spectra[1,, drop=FALSE])
plot(bc.irls)
In my case, the x ticks should not start with 0, but with 5000 (so the annotation of the x axis is off by 5000). Is it possible to change the range in the baseline constructor? Or can I somehow adjust the x labels in the plot method?