I have the following code:
\documentclass{standalone}
\usepackage{pgfplotstable}
\pgfplotsset{width=12cm,compat=1.9}
\usepackage{filecontents}
\begin{filecontents*}{all_women.csv}
a,b
1.431363764,-0.114988484
1.505149978,0.303005044
1.568201724,0.806163983
1.62324929,1.109635968
1.672097858,1.24886644
1.716003344,1.50350828
1.755874856,1.621079988
1.792391689,1.714388602
1.826074803,1.830499259
1.857332496,1.888497767
\end{filecontents*}
\begin{filecontents*}{select_women.csv}
a,b
1.431363764,-0.114988484
1.505149978,0.303005044
1.568201724,0.806163983
1.62324929,1.109635968
\end{filecontents*}
\begin{filecontents*}{steps_women.csv}
a,b
1.431363764,-0.114988484
1.431363764,0.303005044
1.505149978,0.303005044
1.505149978,0.806163983
1.568201724,0.806163983
1.568201724,1.109635968
1.62324929,1.109635968
1.62324929,1.24886644
1.672097858,1.24886644
1.672097858,1.50350828
1.716003344,1.50350828
1.716003344,1.621079988
1.755874856,1.621079988
1.755874856,1.714388602
1.792391689,1.714388602
1.792391689,1.830499259
1.826074803,1.830499259
1.826074803,1.888497767
1.857332496,1.888497767
\end{filecontents*}
\begin{document}
\pgfplotstableread[col sep=comma]{steps_women.csv}\datatable
\begin{tikzpicture}
\begin{axis}[
title={Breast},
xlabel={Age (years)},
ylabel={rates per 100 000},
legend pos=north west,
ymajorgrids=true,
grid style=dashed,
xtick={1.431363764,1.505149978,1.568201724,1.62324929,
1.672097858,1.716003344,1.755874856,1.792391689,1.826074803,1.857332496},
xticklabels={[25-29],[30-34],[35-39],[40-44],[45-49],[50-54],[55-59],[60-64],[65-69],[70-75]},
ytick={-0.114988484,0.303005044,0.806163983,1.109635968,1.24886644,1.50350828,1.621079988,1.714388602,1.830499259,1.888497767},
yticklabels={1,2,6,13,18,32,42,52,68,77},
x tick label style={rotate=60, anchor=east}
]
\addplot[blue] table [x=a,y=b, col sep=comma]{\datatable};
\pgfplotstableread[col sep=comma]{select_women.csv}\datatable
\addplot[red] table[
y={create col/linear regression={y=b}}
]{\datatable};
\addlegendentry{Data}
\addlegendentry{%
$\pgfmathprintnumber{\pgfplotstableregressiona} \cdot x
\pgfmathprintnumber[print sign]{\pgfplotstableregressionb}$}
\end{axis}
\end{tikzpicture}
\hspace{0.10cm}
\end{document}
That gives this picture:

I am trying to extend the trend line plotted from the 4 points in select_women.csv. Is there a way I could do that? Thank you!

\addplot+[only marks]...You can choose marks bymark=<mark>. For<mark>seepgfplotsdocumentation page 160. section 4.7. – Apr 13 '15 at 15:15