I would like to have the following modifications to the scatter plot.
The title should be typeset on two lines.
I would like a break on each axis indicating a skip from 0. (When I was in junior high school, we used two 'parallel" wavy lines.)
0 should be put in the lower left corner of the plot.
Remove the comma in the years.
I also have some question. Why is the plot drawn in blue? What is the diameter of each dot? How would I make the line connecting the dots to be dashed and drawn in a different shade of blue?
\documentclass{amsart}
\usepackage{tikz}
\usetikzlibrary{calc}
\usepackage{pgfplots}
\pgfplotsset{compat=newest}
\begin{document}
\begin{tikzpicture}
\begin{axis}[grid=major, title=\textbf{Population of Pittsford in \boldmath$19^{\mathrm{th}}$ Century\unboldmath},
ylabel = Population (in thousands),
xlabel = Year,
xmax=1900]
\addplot plot coordinates{(1800,1.1) (1810,1) (1820,0.9) (1830,1.2) (1840,1.5) (1850,1.5) (1860,1.5) (1870,1.7) (1880,1.75) (1890,1.75) (1900,1.9)};
\coordinate (Bottom Left) at (axis cs:1800,0);
\coordinate (Bottom Right) at ($(Bottom Left) + (axis direction cs:100,0)$);
\draw (Bottom Left) -- (Bottom Right);
\coordinate (Top Left) at ($(Bottom Left) + (axis direction cs:0,0.1)$);
\coordinate (Top Right) at ($(Top Left) + (axis direction cs:20,0)$);
\draw[red,thick] (Top Left) -- (Top Right);
\end{axis}
\end{tikzpicture}
\end{document}


tex.stackexchangemade a mess of it.) Read the first six lines in the bounty. – user74973 Jun 03 '15 at 14:19