| wb_project | R Documentation |
Query World Bank project data from the Projects API.
wb_project(
id = NULL,
country = NULL,
status = NULL,
region = NULL,
search = NULL,
start_date = NULL,
end_date = NULL
)
id |
( |
country |
( |
status |
( |
region |
( |
search |
( |
start_date |
( |
end_date |
( |
A data.frame() with World Bank project data. The columns are:
id: The project ID.
project_name: The project name.
status: The project status.
approval_date: The board approval date.
closing_date: The closing date.
country_code: The ISO country code.
country: The country name.
region: The region name.
total_commitment: The total commitment amount in millions USD.
ibrd_commitment: The IBRD commitment amount in millions USD.
ida_commitment: The IDA commitment amount in millions USD.
lending_instrument: The lending instrument type.
borrower: The borrower name.
implementing_agency: The implementing agency name.
url: The project URL.
https://search.worldbank.org/api/v2/projects
# active projects in Brazil related to education
wb_project(country = "BR", status = "Active", search = "education")
# look up a specific project
wb_project(id = "P163868")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.