-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #36 from dtacled/tb
Tb doc updates
- Loading branch information
Showing
8 changed files
with
17 additions
and
46 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 |
---|---|---|
|
@@ -6,27 +6,7 @@ Authors@R: c( | |
person(given = "", | ||
family = "ACLED", | ||
role = c("cph", "cre"), | ||
email ="[email protected]"), | ||
person(given = "Lucas", | ||
family = "Fagliano", | ||
role = "aut", | ||
email = "[email protected]"), | ||
person(given = "Trey", | ||
family = "Billing", | ||
role = "aut", | ||
email = "[email protected]"), | ||
person(given = "Rachel", | ||
family = "Goodman", | ||
role = "aut", | ||
email = "[email protected]"), | ||
person(given = "Katayoun", | ||
family = "Kishi", | ||
role = "aut", | ||
email = "[email protected]"), | ||
person(given = "Michael", | ||
family = "Start", | ||
role = "aut", | ||
email = "[email protected]")) | ||
email ="[email protected]")) | ||
Description: The package allows users to easily interact with 'ACLED' data by providing wrappers for the API and other functions to manipulate 'ACLED' data. | ||
License: GPL (>= 3) | ||
Encoding: UTF-8 | ||
|
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
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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
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 |
---|---|---|
|
@@ -20,7 +20,7 @@ library(acledR) | |
library(dplyr) | ||
``` | ||
|
||
This vignette provides a brief overview of the `acledR` package. You can find more detailed explanations and examples under the 'Using acledR' tab. For general information on ACLED’s methodology, please visit [ACLED's Knowledge Base](https://acleddata.com/knowledge-base/). | ||
This vignette provides a brief overview of the acledR package. You can find more detailed explanations and examples under the 'Using acledR' tab. For general information on ACLED’s methodology, please visit [ACLED's Knowledge Base](https://acleddata.com/knowledge-base/). | ||
|
||
The main objectives of this package are: | ||
|
||
|
@@ -40,7 +40,7 @@ You can begin by installing and then loading the package: | |
# Install acledR | ||
install.packages("acledR") # from CRAN | ||
devtools::install_github("ACLED/acledR") # or from the developer's branch from Github. | ||
devtools::install_github("ACLED/acledR") # or from github. | ||
# Load acledR | ||
library(acledR) | ||
|
@@ -60,7 +60,7 @@ acled_access(email = "[email protected]", key = "your_key") # This is an exampl | |
acled_access(email = Sys.getenv("EMAIL_ADDRESS_EXAMPLES"), key = Sys.getenv("EXAMPLES_KEY")) | ||
``` | ||
|
||
If the authentication was successful, you will find a message in the console stating "Authorization accepted". | ||
If the authentication was successful, you will find a message in the console stating that your credentials were authorized. | ||
|
||
## Requesting data from ACLED’s API - `acled_api()` | ||
|
||
|