Tricks to prevent incorrect input date formats from resulting in missing values?
When importing a data set with a date column that defaults to character, it is common to change it to numeric and continuous. Unfortunately if the input date format is incorrect any values that cannot be parsed are set to missing, thus you don't get a second chance at setting the input format. How do you typically handle this in an exploratory/graphical user interface analysis? I sometimes dup...