I have a problem with NA in a factor variable since ggplot includes them in the plot as if they are another category/level. I would like to drop the missing data. I am sorry
I'd use qplot instead of ggplot in this way:
qplot
ggplot
qplot(x=column, data=subset(dataframe,!is.na(column)))
I hope this helps.