I have in my data frame a column of birth dates that are in the English model, but I do not know how to analyze this descriptively nor what resources to use from R.
Should I use a bar chart or a histogram? How would the R understand what dates are? I tried to take the risk by doing this:
x = as.Date(rehab.1$Data.Nascimento)
hist(x, main = "Data de Nascimento", breaks = "years",axes = TRUE, xlab = "data", ylab = "Frequência Absoluta", col = "green")
But what came out was not cool: