I would like to insert the slope inside a log-log chart with pgfplots. I checked both the pgfplots documentation and the net, but I didn't find something helpful about this problem.
Here is the MWE:
\documentclass{article}
\usepackage{tikz}
\usepackage{pgfplots}
\pgfplotsset{compat=1.5.1}
\usepackage{amsmath,amssymb}
\begin{document}
\begin{tikzpicture}
\begin{loglogaxis}[
xlabel={x},
ylabel={y},
xmin=0.01, xmax=0.10,
ymin=200, ymax=750,
width=.8\columnwidth,
/pgfplots/log ticks with fixed point,
/pgfplots/ytick={250,300,400,...,700}]
]
\addplot
coordinates{
(0.0090, 704.11)
(0.0300, 476.05)
(0.0600, 379.49)
(0.0900, 332.26)
(0.1005, 320.46)
};
\end{loglogaxis}
\end{tikzpicture}
\end{document}
