-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathNEWS
135 lines (80 loc) · 4 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
NEWS
====
Versioning
----------
Releases will be numbered with the following semantic versioning format:
<major>.<minor>.<patch>
And constructed with the following guidelines:
* Breaking backward compatibility bumps the major (and resets the minor
and patch)
* New additions without breaking backward compatibility bumps the minor
(and resets the patch)
* Bug fixes and misc changes bumps the patch
wakefield 0.3.7 -
----------------------------------------------------------------
wakefield 0.3.6
----------------------------------------------------------------
* A maintenence release to address stringi's change in `lorem_ipsum()`.
wakefield 0.3.3
----------------------------------------------------------------
* A maintenence release to ensure that images for README are accessible per CRAN's
request.
wakefield 0.2.1
----------------------------------------------------------------
BUG FIXES
* `year` used `hijack` to hard code the year into the documentation causing
a mismatch in the function arguments and documentation on Jan. 1st. `hijack`
is no longer used to create `year`.
* `likert` had a space at the end of the `"Strongly Agree "` group. This has
been stripped.
* `political` had the wrong distribution of political groups. This has been
fixed.
wakefield 0.2.0
----------------------------------------------------------------
IMPROVEMENTS
* Added clarification to `groups` to indicate its binary grouping and alternate
grouping for > 2 groups (see issue #5).
wakefield 0.1.0
----------------------------------------------------------------
BUG FIXES
* `employment` was misspelled as `empoyment`. Caught by Danilo Freire (issue #2).
* `r_list` did not handle vectors and data.frames that were passed to it. The
symbols were turned into calls before they were tested as vector/data.frame.
* `rep.sep` was not honored in `r_data_frame` ("_" was used).
NEW FEATURES
* `r_list` & `r_data_frame` now add a suffix to repeat variable names in a
sensible way. The separator is controlled by `rep.sep`. Suggested by
Ananda Mahto. See issue #1 for details.
* `r_list` and `r_data_frame` can utilize `r_series` and `r_dummy` to produce
series of variables. Suggested by Ananda Mahto. See issue #1 for details.
* `r_series` added to produce a series of grouped data. This is useful for
simulating repeated measures or survey questions. Suggested by Ananda Mahto.
See issue #1 for details.
* `r_series` picks up a `reate argument to generate related data as suggested by
Wordpress user Ulf: http://goo.gl/H1RKsV.
* `as_integer` added as a means of coercing all columns of a `factor`
`data.frame` to `integer`s.
* `r_dummy` added to produce multiple dummy columns from a single factor.
* `dob` and `birth` functions added for date of birth variable function.
* `military` added as a random military branch varaible function.
* `religion` added as a random religion varaible function.
* `internet_browser` added as a random Internet browser varaible function.
* `peek` added to allow a truncated head inspection of all columns of a
`data.frame`.
* `table_heat` & `plot.tbl_df` added to visualize column types & `NA`s.
* `r_insert` added to safely insert `data.frame`s into a `r_data_frame` or
`r_list` object.
* `variables` added to view the available variable functions.
* `p_data_theme` added to "save" common themes (preset column types).
* `relate` function added to generate related data as suggested by Wordpress
user Ulf: http://goo.gl/H1RKsV.
* `sex_inclusive` and `gender_inclusive` added to give a non-binary alternative
for sex/gender variables that are more inclusive. Thanks to Matthew Sigal
for this https://github.com/trinker/wakefield/pull/4.
MINOR FEATURES
* `seriesname` function added to give a `data.frame` an attribute `seriesname`.
Typicaly this is for internal use.
wakefield 0.0.1
----------------------------------------------------------------
This package is designed to generates random data sets including: `data.frames`,
`lists`, and `vectors`.