I am trying to write an open data package that reads New York State education data into R. That data are provided as an Access database.
I want to write a function that downloads, reads, and imports those files, and I want it to be supported across platforms. The existing approach suggests installing a 32-bit version of R, which does not fit the bill for programmatic access.
A tour of #RStats suggests that this is a common pain point (1, 2, 3, 4)
On OS X/Linux, you can use mdb.get
from the Hmisc
package, provided that you have a third party library called mdb-tools
. But this seems to be of little help for Windows.
An accepted answer will read the .mdb
file linked above into R across Windows, OS X, and Linux.