-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated the package DESCRIPTION and README
- Loading branch information
1 parent
407a7d0
commit 571c2bc
Showing
2 changed files
with
12 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
Package: econdatar | ||
Title: Automation of Data Tasks to and from Codera Analytics' Econometric Data Services | ||
Version: 3.2.0 | ||
Date: 2024-08-19 | ||
Version: 3.3.0 | ||
Date: 2025-01-10 | ||
Authors@R: c(person(given = "Byron", family = "Botha", role = c("aut", "cre"), email = "[email protected]"), | ||
person(given = "Aidan", family = "Horn", role = "ctb"), | ||
person(given = "Sebastian", family = "Krantz", role = "ctb")) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ | |
```r | ||
install.packages(c("remotes", "tcltk"), repos = "https://cran.mirror.ac.za") | ||
library("remotes") | ||
install_github("coderaanalytics/econdatar", ref = "3.2.0") | ||
install_github("coderaanalytics/econdatar", ref = "3.3.0") | ||
``` | ||
|
||
Install from disk | ||
|
@@ -30,9 +30,17 @@ Or if selecting a particular release **(recommended)**, [see](https://github.com | |
```r | ||
library("remotes") | ||
remove.packages("econdatar") | ||
install_github("coderaanalytics/econdatar", ref = "3.2.0") | ||
install_github("coderaanalytics/econdatar", ref = "3.3.0") | ||
``` | ||
|
||
## Connecting to econdata.co.za | ||
|
||
In most cases reading and writing data from econdata.co.za requires you to authenticate yourself. This usually requires you to enter an API token which you can get from the web application. Log in to the web application and go to the *Account* page, click on *Show key* and copy the API token by clicking anywhere on the token itself. Paste this token into the dialogue box that appears when running `read_dataset` for example and click *Submit*. | ||
|
||
If you are using a service account you can set the `ECONDATA_CREDENTIALS` env variable with the format `client_id;client_secret` in order to automate the above process. | ||
|
||
If you are connecting to econdata.co.za through a portal other that the main site (someportal.econdata.co.za rather than www.econdata.co.za) you will need to set the `ECONDATA_URL` and `ECONDATA_AUTH_URL` env variables, please contact [email protected] for further details. | ||
|
||
Please see the [EconData blog](https://econdata.co.za) for in depth tutorials | ||
|
||
## License | ||
|