When creating a plot like this one
\documentclass{article}
\usepackage{pgfplots}
\begin{document}
\begin{tikzpicture}
\begin{axis}
\addplot coordinates {
(0.01,0.01)
(0.09,0.09)
};
\end{axis}
\end{tikzpicture}
\end{document}
pgfplot uses the following xticklabels:

Is there any way to make pgfplots create labels as 0.01,0.02,... without specifying them all manually using xticklabels and yticklabels?
