1
I am unable to perform the ggplot of the following table:
 Data           Frequência
1 2016-06-11        3126
2 2016-03-05         218
3 2016-01-23         431
4 2016-06-04         145
5 2016-11-30         331
6 2016-15-01         275
Through the following code:
ggplot(data = data, aes(Frequência)) + geom_histogram()
Giving the following warning stat_bin() using bins = 30. Pick better value with binwidth
The format of the Histogram is strange too:

Sincerely yours truly, Arduin

In the last two rows of data there are months
17and15. And yet to close)inggplot.– Rui Barradas