read_rba() downloads, imports and tidies data from statistical
tables published by the Reserve Bank of Australia. You can specify the
requested data using the table_no or series_id.
To find the table_no or series_id that corresponds to the data you want,
use the functions browse_rba_tables() and/or browse_rba_series(). Note
that some historical exchange rate tables do not have table numbers on
the RBA website; they have been assigned table numbers -
see browse_rba_tables("exchange rates").
To see which tables cannot currently be read, run browse_rba_tables(FALSE).
read_rba_seriesid() is a wrapper around read_rba().
Certain corporate networks restrict your ability to download files in an R
session. On some of these networks, the "wininet" method must be used when
downloading files. Users can specify the method that will be used to
download files by setting the "R_READRBA_DL_METHOD" environment variable.
For example, the following code sets the environment variable for your
current session: Sys.setenv("R_READRBA_DL_METHOD" = "wininet")
You can add "R_READRBA_DL_METHOD" to your .Rprofile to have this
persist across sessions.