You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: NEWS.md
+13Lines changed: 13 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,16 @@
1
+
## cancensus 0.2.0
2
+
3
+
### Major changes
4
+
- Added a `max_leaves_option` for the `search_census_vectors` function. Adds functionality to set maximum depth for child census vectors, i.e. `max_level=NA` as an additional parameter. Then e.g. `max_level=1` would only get direct children and no grandchildren.
5
+
- Resolved issues with mislabelled CD UID for CSD level data
6
+
- Improve reliability of character/numeric alignments for geographic UIDS
7
+
-`get_census_geography` is now soft deprecated and rolled into the standard `get_census` with parameters
8
+
9
+
### Minor changes
10
+
- Minor documentation improvements
11
+
- Soften dependency on `readr` package
12
+
- Allow for search of internal CensusMapper variables
Access, retrieve, and work with Canadian Census data and geography.
11
12
12
13
* Download data and Census geography in tidy and analysis-ready format
13
14
* Convenience tools for searching for and working with Census regions and variable hierarchies
14
15
* Provides Census geography in multiple R spatial formats
15
-
* Provides data and geography at multiple Census geographic levels including province, Census Metropolitan Area, Census Division, Census Subdividision, Census Tract, and Dissemination Areas
16
+
* Provides data and geography at multiple Census geographic levels including province, Census Metropolitan Area, Census Division, Census Subdivision, Census Tract, and Dissemination Areas
16
17
* Provides up-to-date data for the 2016, 2011, and 2006 Censuses
17
18
18
19
### Reference
@@ -40,7 +41,7 @@ To check your API key, just go to "Edit Profile" (in the top-right of the Census
40
41
41
42
### Local Cache
42
43
43
-
For performance reasons, and to avoid unneccessarily drawing down API quotas, **cancensus** caches data queries under the hood. By default, **cancensus** caches in R's temporary directory, but this cache is not persistent across sessions. In order to speed up performance, reduce quota usage, and reduce the need for unnecessary network calls, we recommend assigning a persistent local cache using `options(cancensus.cache_path = 'XXX')`, this enables better control over the data. This option can be stored stored in your .Rprofile alongside your API key. Users will be prompted with a suggestion to change their default cache location when making API calls if one has not been set yet.
44
+
For performance reasons, and to avoid unnecessarily drawing down API quotas, **cancensus** caches data queries under the hood. By default, **cancensus** caches in R's temporary directory, but this cache is not persistent across sessions. In order to speed up performance, reduce quota usage, and reduce the need for unnecessary network calls, we recommend assigning a persistent local cache using `options(cancensus.cache_path = 'XXX')`, this enables better control over the data. This option can be stored stored in your .Rprofile alongside your API key. Users will be prompted with a suggestion to change their default cache location when making API calls if one has not been set yet.
44
45
45
46
### Currently available datasets
46
47
@@ -98,24 +99,25 @@ We'd love to feature examples of work or projects that use cancensus.
98
99
99
100
If you wish to cite cancensus:
100
101
101
-
von Bergmann, J., Aaron Jacobs, Dmitry Shkolnik (2019). cancensus: an R package to
102
-
access, retrieve, and work with Canadian Census data and geography. v0.1.8.
102
+
von Bergmann, J., Aaron Jacobs, Dmitry Shkolnik (2019). cancensus: R package to
103
+
access, retrieve, and work with Canadian Census data and geography. v0.2.0.
104
+
103
105
104
106
A BibTeX entry for LaTeX users is
105
107
```
106
108
@Manual{,
107
109
author = {Jens {von Bergmann} and Dmitry Shkolnik and Aaron Jacobs},
108
-
title = {cancensus: An R Package to Access, Retrieve, and Work With Canadian Census Data and Geography},
110
+
title = {cancensus: R package to access, retrieve, and work With Canadian Census data and geography},
The cancensus package is designed for working with Canadian Census data. In addition to Census data, Statistics Canada provides access to a vast [socio-economic data repository](https://www150.statcan.gc.ca/n1/en/type/data) with thousands of data tables available for public access.
117
119
118
-
The [cansim package](https://mountainmath.github.io/cansim/index.html) is designed to retrieve and work with public Statistics Canada data tables. The cansim prepares retrieved data tables as analysis-ready tidy dataframes and provides a number of convenience tools and functions to make it easier to work with Statistics Canada data.
120
+
The [cansim package](https://mountainmath.github.io/cansim/index.html) is designed to retrieve and work with public Statistics Canada data tables. The cansim prepares retrieved data tables as analysis-ready tidy dataframes and provides a number of convenience tools and functions to make it easier to work with Statistics Canada data. It is available on CRAN and on [Github](https://github.com/mountainMath/cancensus).
119
121
120
122
Data downloaded through the cansim package that comes with standard geographic attributes will typically share a common geographic ID that can be matched to Census data.
0 commit comments