Skip to content

Instantly share code, notes, and snippets.

@abelsonlive
Created September 12, 2012 01:24
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save abelsonlive/3703504 to your computer and use it in GitHub Desktop.
Save abelsonlive/3703504 to your computer and use it in GitHub Desktop.
read dbf into R (for Cezary)
install.packages("foreign")
library("foreign")
data = read.dbf("path/to/file.dbf")
write.csv(data, "path/to/file.csv", row.names=F)
@grecomariano
Copy link

gracias

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment