Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ IMFData

[![Build Status](http://travis-ci.org/mingjerli/IMFData.png?branch=master)](https://travis-ci.org/mingjerli/IMFData) [![CRAN\_Status\_Badge](http://www.r-pkg.org/badges/version/IMFData)](http://cran.r-project.org/package=IMFData)

IMFData is an R package to access [IMF (Internation Monetary of Fund) data](http://data.imf.org) . It has three main goals:
IMFData is an R package to access [IMF (International Monetary Fund) data](http://data.imf.org) . It has three main goals:

- Findout available datasets in the API.
- Findout the dataset datastructure and code to use to make a query.
- Find out available datasets in the API.
- Find out the dataset datastructure and code to use to make a query.
- Query through the API.

Installation
Expand Down Expand Up @@ -132,7 +132,7 @@ availableDB$DatabaseText
#> [68] "Balance of Payments (BOP), Global SDMX (US Dollars)"
```

### Findout how many dimension available in a given dataset. Here, we use IFS(International Financial Statistics) for example,
### Find out how many dimensions are available in a given dataset. Here, we use IFS (International Financial Statistics) for example,

``` r
# Get dimension code of IFS dataset
Expand Down Expand Up @@ -234,7 +234,7 @@ CodeSearch(IFS.available.codes, "CL_INDICATOR_IFS", "GDP")
#> 2671 All Indicators Excluding NGDP Indicators
```

### Make API call to get data,
### Make API call to get data

``` r
databaseID <- "IFS"
Expand Down