I’m having problem with the scaled ticks options.
I just would like to have 10–5 at the top of the y axis and some numbers along the y axis...
I commented %scaled ticks=true in the attached example of code.
Thanks!
\documentclass[crop]{standalone}
\usepackage{tikz}
\usepackage{amsmath}
\usepackage{amssymb,amsmath}
\usepackage{pgfplots}
\pgfplotsset{compat=newest}
\setlength{\textwidth}{10cm}
\begin{document}
\begin{tikzpicture}[font={\fontsize{10pt}{3}\selectfont}]
\begin{axis}[ legend pos = north east, legend columns=1,
grid=major,
%scaled ticks=true
legend cell align=left,
ymode=log,
width=\textwidth, ymin=0.00001, ymax=0.00005, xmin=1, xmax=30,
ylabel={MSE indices \& SSCRB}, xlabel={Shape parameter: $\lambda$},]
\addplot[red,mark=square*] table[x={x}, y={y}] {SCM.dat}; \addlegendentry{$\varrho_{SCM}$} ;
\addplot[blue,mark=*] table[x={x}, y={y}] {Tyler.dat}; \addlegendentry{$\varrho_{Tyler}$}
\addplot[green!60!black,mark=diamond*] table[x={x}, y={y}] {SSCRB.dat}; \addlegendentry{$\mathrm{SSCRB}$} ;
\end{axis}
\end{tikzpicture}
\end{document}


