Skip to content

R-alpha: Another error in axis

1 message · Arne Kovac

#
The commands
produce the tick-marks but not the labels (except the last one). Sorting
the vector at in axis() seems to work, ie should lines 35-40 should read:

        else {
                at <- sort(at)
                if (log)
                        ind <- (10^usr[1] <= at & at <= 10^usr[2])
                else ind <- (usr[1] <= at & at <= usr[2])
        }


Arne