The following MWE
\documentclass{standalone}
\usepackage{pgfplots}
\begin{document}
\begin{tikzpicture}[scale=0.75]
\begin{axis}[ylabel=Y-Axis, xlabel=X-Axis, xmin=0.000, xmax=0.9, ymin=0, ymax=12, clip=false, yticklabel pos=right, ylabel near ticks]
\pgfplotsinvokeforeach{2,3,5,10}{
\addplot[mark=none, domain=0.000:0.9, thick] {-ln(x/#1^2)/ln(#1)}; %Varying R values
}
\end{axis}
\end{tikzpicture}
\end{document}
yields the following graph

Mathematically, these lines should extend to infinity when they reach x=0 at the left-hand side of the box.
What is the "best way" to get these lines close to the edge of the box or otherwise fill them in so they are not cut-off?
