Oh, man. Some day, I will learn to use R. And on that day, I will plug it into live data using sqldf. And there will be great rejoicing.
And then I can do this:

library(ggplot2)
DF=sqldf('select age from titanic3 where age != "NA"')
qplot(DF$age,data=DF, geom="histogram")