I have a graph with two logarithmic axes but I wish to set the labels of one of them to display in fixed point format. Is this possible? Below is a minimum example of how to get both axes using the fixed point format. I want the x axis to be fixed point.
\begin{figure}[H]
\centering
\begin{tikzpicture}
\begin{loglogaxis}[
xlabel=Processes,
ylabel=Run time (Seconds)
log ticks with fixed point
]
\addplot[mark=*,blue] plot coordinates {
(1,0.005584)
(2,0.003083)
(4,0.001586)
(8,0.006259)
};
\addlegendentry{100000}
\addplot[color=red,mark=x]
plot coordinates {
(1,0.036002)
(2,0.024381)
(4,0.014283)
(8,0.008018)
};
\addlegendentry{1000000}
\addplot[color=green,mark=o]
plot coordinates {
(1,0.334952)
(2,0.178412)
(4,0.092895)
(8,0.053607)
};
\addlegendentry{10000000}
\end{loglogaxis}
\end{tikzpicture}
\caption{Number of processes against run time}
\end{figure}

