How to plot a double log scale at the x axis? I need to plot my Data with a double Log Scale on the x axis. So basically apply ListLogLinearPlot two times. Does anyone have any ideas how to do that? Answers 1 Subscribe Submit Answer Rylee Casper 1 Year ago Notice the details section of ScalingFunctions where it says that you can use ScalingFunctions -> {{g, InverseFunction[g]}, {f, InverseFunction[f]}} Here I'm, writing the composition Log[Log[#]]& as [email protected]*Log for the horizontal axis and None for the vertical axis. Plot[ Log[Log[x]] ,{x, 10, 10^7} ,ScalingFunctions -> {{[email protected]*Log, [email protected]*Exp}, None} ,PlotTheme->"Scientific" ]
Rylee Casper 1 Year ago Notice the details section of ScalingFunctions where it says that you can use ScalingFunctions -> {{g, InverseFunction[g]}, {f, InverseFunction[f]}} Here I'm, writing the composition Log[Log[#]]& as [email protected]*Log for the horizontal axis and None for the vertical axis. Plot[ Log[Log[x]] ,{x, 10, 10^7} ,ScalingFunctions -> {{[email protected]*Log, [email protected]*Exp}, None} ,PlotTheme->"Scientific" ]
Answers 1
Notice the details section of
ScalingFunctions
where it says that you can useScalingFunctions -> {{g, InverseFunction[g]}, {f, InverseFunction[f]}}
Here I'm, writing the composition
Log[Log[#]]&
as[email protected]*Log
for the horizontal axis andNone
for the vertical axis.