Hi all,
I have the following code:
pdftanemura = 15.344341419321385` E^(-3.04011` y^1.078`) y^2.315`;
data = Table[{y, pdftanemura}, {y, PowerRange[0.01, 100, 1.1]}];
ListLogLogPlot[data, PlotRange -> {{0.01, 100}, {10^-4, 10}}]
LogLogPlot[pdftanemura, {y, 0.01, 100}, PlotRange -> {{0.01, 100}, {10^-4, 10}}]
which give in 10.4.1:

However in 11 it gives:

The horizontal coordinate is not transformed properly, it can be fixed using:
% /. Line[x_] :> Line[{Log@x[[All, 1]], x[[All, 2]]}\[Transpose]]
It looks like this is some particular example where it is not correct? Can people recreate this?