Posts by Walter Pedro S. Júnior • 43 points
3 posts
-
1
votes2
answers1628
viewsA: I want to generate an R table for Latex
A solution using the package stargazer is: install.packages("stargazer") library(stargazer) data("iris") stargazer(do.call(cbind, lapply(iris,summary)), type = "latex")…
-
2
votes0
answers951
viewsQ: Error trying to save script to R
When I try to save my script appears the error message as per image. How to solve this problem?…
-
1
votes1
answer2251
viewsQ: Bar graph with percentages - ggplot2
v1 = c("Sim","Não","Não","Não","Não","Sim","Sim","Sim","Sim","Sim") v2 = c("branco","branco","pardo","preto","pardo","pardo","preto","branco","preto","pardo") dados = data.frame(v1,v2) I want to…