forked from rOpenGov/pollstR
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNEWS
65 lines (41 loc) · 2.2 KB
/
NEWS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
CHANGES IN 1.4.0
* Renamed functions to start with `pollster_` since I kept misstyping them. However,
the old function names beginnning with `pollstr_` still work.
* Renamed the classes returned by pollster functions to start with `pollster_`.
* Added function `pollster_chart_tbl` which returns all polls related to a chart.
* Added function `pollster_house_effects` which returns the pollster house effects for a chart.
* Pollster API changes: deprecated `topic` argument in `pollstr_polls` (#11);
added `question` argument to `pollstr_polls` (#12)
* Edited and rewrote much of the vignette. The new example uses the 2016 General Election
between Clinton and Trump.
* Miscellaneous non-user facing rewrites to code to make it more robust.
CHANGES IN 1.3.0
* Add `page` and `max_pages` arguments to `pollster_charts` function since the charts method in the API now takes a page argument. #10
CHANGES IN 1.2.2
* Add Drew Linzer as original author
* Bugfix: Removes polls where questions are incomplete so as not to cause errors. #8 (Thanks @olliemcdonald)
CHANGES IN 1.2.1
* Bugfix: fix R CMD check notes due to change in how it handles non-base default packages: http://developer.r-project.org/blosxom.cgi/R-devel/2015/06/29#n2015-06-29
CHANGES IN 1.2.0
* Add showall argument to pollstr_charts and pollstr_polls
CHANGES IN 1.1.1
* Bugfix: ensure that character vectors do not get converted to factors
* Added section in documentation on errors in functions
CHANGES IN 1.1.0
* Bugfix: Update to new API changes in polls.
* Move testthat tests to inst
CHANGES IN 1.0.2
* Bugfix: fix test failures due to API change.
* Remove tests brittle to API changes so fewer CRAN check failures
CHANGES IN 1.0.1
* Bugfix: did not convert some election date fields
CHANGES IN 1.0.0
* submit to CRAN
CHANGES IN 0.2.0
Merge with http://github.com/jrnold/pollster. This is a complete rewrite of the client.
* ``getchart`` replaced with ``pollstr_charts``. Returns class ``pollstr_charts``.
* ``getchart`` replaced with ``pollstr_chart``. Returns class ``pollstr_chart``.
* ``getpolls`` replaced with ``pollstr_polls``. Returns class ``pollstr_polls``.
* ``xml`` API access no longer available.
CHANGES IN 0.1
* Initial package release