I am having a small issue making sense of a log-log plot. So if I create an x-y plot by the following:
xx <- exp(1:10)
yy <- exp(1:10)
plot(xx,yy)
The highest value is 22026.47. When I then plot it on as a log-log plot (this is purely a basic example), as per below
plot(xx,yy, log="yx")
the highest co-ordinate is over 5000. Can someone point me in the right direction to interpret this? For example how can I get the value by which 22026.47 is transformed.