Posts by user7779 • 136 points
3 posts
-
6
votes2
answers816
viewsQ: R - IBGE municipal data download
Is there any way to download municipal IBGE data with R command line?
-
4
votes1
answer5017
viewsA: Export formatted R to Excel data
With the Writexls package, you can do some things. The syntax is this: WriteXLS(x, ExcelFileName = "R.xls", SheetNames = NULL, perl = "perl", verbose = FALSE, Encoding = c("UTF-8", "latin1"),…
-
2
votes4
answers19992
viewsA: How to transport data from R to excel?
The package Writexls can be useful. After installing the package, just type the following command: WriteXLS("m", "n.xls") Where m is the database you are working on in Excel and n the name of the…