Posts by Silvio Augusto Jr. • 26 points
2 posts
-
0
votes2
answers292
viewsA: ggplot data.frame
Note that it is not necessary to convert the variable to month. To facilitate testing with different types of charts, let’s save the ggplot structure to the object g: library(ggplot2) g <-…
-
1
votes1
answer292
viewsA: problem with R enconding
Maybe the problem is already in the import. How are you importing the files? When the default does not work correctly I usually try to set encoding = "UTF8". Try to: read.csv("filename.csv",…