Skip to content

Commit

Permalink
prepare for release
Browse files Browse the repository at this point in the history
  • Loading branch information
gergness committed Jan 17, 2020
1 parent ebfa517 commit 2e17c43
Show file tree
Hide file tree
Showing 2 changed files with 145 additions and 145 deletions.
82 changes: 41 additions & 41 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,41 +1,41 @@
Package: srvyr
Type: Package
Title: 'dplyr'-Like Syntax for Summary Statistics of Survey Data
Description: Use piping, verbs like 'group_by' and 'summarize', and other
'dplyr' inspired syntactic style when calculating summary statistics on survey
data using functions from the 'survey' package.
Version: 0.3.6.9000
Date: 2019-10-05
Authors@R: c(person("Greg", "Freedman Ellis", email = "[email protected]", role = c("aut", "cre")),
person("Thomas", "Lumley", role = "ctb"),
person("Tomasz", "\u017b\u00F3\u0142tak", role = "ctb"),
person("Ben", "Schneider", role = "ctb"))
URL: http://gdfe.co/srvyr, https://github.com/gergness/srvyr
BugReports: https://github.com/gergness/srvyr/issues
Depends:
R (>= 3.1.2)
Imports:
dplyr (>= 0.7),
magrittr,
rlang,
survey,
tibble,
tidyselect
License: GPL-2 | GPL-3
LazyData: TRUE
Suggests:
convey,
DBI,
dbplyr,
ggplot2,
knitr,
Matrix,
rmarkdown,
pander,
RSQLite,
survival,
testthat,
vardpoor
Encoding: UTF-8
VignetteBuilder: knitr
RoxygenNote: 7.0.2
Package: srvyr
Type: Package
Title: 'dplyr'-Like Syntax for Summary Statistics of Survey Data
Description: Use piping, verbs like 'group_by' and 'summarize', and other
'dplyr' inspired syntactic style when calculating summary statistics on survey
data using functions from the 'survey' package.
Version: 0.3.7
Date: 2020-01-16
Authors@R: c(person("Greg", "Freedman Ellis", email = "[email protected]", role = c("aut", "cre")),
person("Thomas", "Lumley", role = "ctb"),
person("Tomasz", "\u017b\u00F3\u0142tak", role = "ctb"),
person("Ben", "Schneider", role = "ctb"))
URL: http://gdfe.co/srvyr, https://github.com/gergness/srvyr
BugReports: https://github.com/gergness/srvyr/issues
Depends:
R (>= 3.1.2)
Imports:
dplyr (>= 0.7),
magrittr,
rlang,
survey,
tibble,
tidyselect
License: GPL-2 | GPL-3
LazyData: TRUE
Suggests:
convey,
DBI,
dbplyr,
ggplot2,
knitr,
Matrix,
rmarkdown,
pander,
RSQLite,
survival,
testthat,
vardpoor
Encoding: UTF-8
VignetteBuilder: knitr
RoxygenNote: 7.0.2
208 changes: 104 additions & 104 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,104 +1,104 @@
# srvyr (development version)
* `filter`ing on grouped survey designs now works correctly (#54, thanks for reporting @dcaseykc)

* Added function `pull` (#63, thanks @dcaseykc)

* `df` parameter now set to be degrees of freedom of survey for quantiles and variance to match other
functions.

* Updated tests to work with upcoming version of survey (#66).

# srvyr 0.3.6
* Small update to quasiquotation syntax inside `unweighted` to improve consistency with recent rlang updates (#54).

* Added functions `survey_tally()` and `survey_count()` (#53)

# srvyr 0.3.5
* New functions survey_var and survey_sd to calculate population variance and
standard deviaton.

* Computation of standard errors in all survey_ functions can be suppressed
by setting vartype=NULL (#45, thanks @tzoltak).

* Fixed an issue where you'd get an error when summarize components returned
different lengths of data - usually when factor levels were not present
in the data (#49).

* Removed references to MonetDBLite since it has been removed from CRAN.

* Small updates to replace soft-deprecated dplyr functions with their tibble
and tidyselect equivalents (#52, thanks @bschneidr).

# srvyr 0.3.4
* survey_mean/survey_total allow `deff="replace"` like their survey package
forbearers. (#46, thanks @mandes95)

* Fixes for new release of dplyr

# srvyr 0.3.3
* Add warning to explain that design effects cannot be calculated on
proportions. (#39, thanks @mlaviolet)

* Remove dependency on stringr in tests and add DBI to suggests
so that test dependencies are correctly specified (#40, thanks CRAN!)

# srvyr 0.3.2
* Bug fix for calculating multiple quantiles on grouped data
(#38, thanks @iantperry)

# srvyr 0.3.1
* When converting from a survey db-backed survey to a srvyr one
srvyr now tries to capture the updates you've already sent.
If dbplyr can convert the function, then it will bring the
update. If it can't it will warn you (#35).

* Small bug fixes, mostly having to do with CRAN checks,
running on CI services, or for upstream rev dep checks.

# srvyr 0.3.0
* srvyr now uses tidy evaluation from rlang. The "underscore" functions
have been soft deprecated in favor of quosure splicing. See dplyr's
vignette "programming" for more details. In almost all cases, the old syntax
will still work, with one exception: the standard
evaluation function `as_survey_twophase_()` had to be changed slightly
so that the entire list is inside quotation.

* Datbase support has been rewritten. It should be faster now and doesn't
require a unique identifier. You also can now convert survey db-backed surveys
to srvyr with as_survey.

* srvyr now has a pkgdown site, check it out at <http://gdfe.co/srvyr>

# srvyr 0.2.2
* Remove test blocking survey update

# srvyr 0.2.1
* Added support for dplyr mutate_at/_if/_all and summarize_at/_if/_all for
srvyr surveys.

* Fixed a few bugs introduced with dplyr 0.6. This version of srvyr will work
with both old versions of dplyr and 0.6, but may be full of warnings if you
update dplyr. Full support for the new dplyr is coming soon.

# srvyr 0.2.0
* Added support for database backed surveys, using dplyr's handling of
DBI. Because of problems interacting with the survey package twophase designs
do not work.

# srvyr 0.1.2
* Fixed a problem with confidence levels not being passed into quantiles

* Added deff parameter to `survey_mean()`, `survey_total()` and `survey_median()`, and
a df parameter to those functions and `survey_quantile()` / `survey_median()`.

* `summarize` and `mutate` match dplyr's behavior when arguments aren't named
(uses `dplyr::auto_name()`)

# srvyr 0.1.1

* New function `cascade` summarizes groups, and cascades to create
summary statistics of groups of groups.

* Fixed a bug for confidence intervals for `survey_total()` on groups.

* Fixed some issues with the upcoming version of dplyr.
# srvyr 0.3.7
* `filter`ing on grouped survey designs now works correctly (#54, thanks for reporting @dcaseykc)

* Added function `pull` (#63, thanks @dcaseykc)

* `df` parameter now set to be degrees of freedom of survey for quantiles and variance to match other
functions.

* Updated tests to work with upcoming version of survey (#66).

# srvyr 0.3.6
* Small update to quasiquotation syntax inside `unweighted` to improve consistency with recent rlang updates (#54).

* Added functions `survey_tally()` and `survey_count()` (#53)

# srvyr 0.3.5
* New functions survey_var and survey_sd to calculate population variance and
standard deviaton.

* Computation of standard errors in all survey_ functions can be suppressed
by setting vartype=NULL (#45, thanks @tzoltak).

* Fixed an issue where you'd get an error when summarize components returned
different lengths of data - usually when factor levels were not present
in the data (#49).

* Removed references to MonetDBLite since it has been removed from CRAN.

* Small updates to replace soft-deprecated dplyr functions with their tibble
and tidyselect equivalents (#52, thanks @bschneidr).

# srvyr 0.3.4
* survey_mean/survey_total allow `deff="replace"` like their survey package
forbearers. (#46, thanks @mandes95)

* Fixes for new release of dplyr

# srvyr 0.3.3
* Add warning to explain that design effects cannot be calculated on
proportions. (#39, thanks @mlaviolet)

* Remove dependency on stringr in tests and add DBI to suggests
so that test dependencies are correctly specified (#40, thanks CRAN!)

# srvyr 0.3.2
* Bug fix for calculating multiple quantiles on grouped data
(#38, thanks @iantperry)

# srvyr 0.3.1
* When converting from a survey db-backed survey to a srvyr one
srvyr now tries to capture the updates you've already sent.
If dbplyr can convert the function, then it will bring the
update. If it can't it will warn you (#35).

* Small bug fixes, mostly having to do with CRAN checks,
running on CI services, or for upstream rev dep checks.

# srvyr 0.3.0
* srvyr now uses tidy evaluation from rlang. The "underscore" functions
have been soft deprecated in favor of quosure splicing. See dplyr's
vignette "programming" for more details. In almost all cases, the old syntax
will still work, with one exception: the standard
evaluation function `as_survey_twophase_()` had to be changed slightly
so that the entire list is inside quotation.

* Datbase support has been rewritten. It should be faster now and doesn't
require a unique identifier. You also can now convert survey db-backed surveys
to srvyr with as_survey.

* srvyr now has a pkgdown site, check it out at <http://gdfe.co/srvyr>

# srvyr 0.2.2
* Remove test blocking survey update

# srvyr 0.2.1
* Added support for dplyr mutate_at/_if/_all and summarize_at/_if/_all for
srvyr surveys.

* Fixed a few bugs introduced with dplyr 0.6. This version of srvyr will work
with both old versions of dplyr and 0.6, but may be full of warnings if you
update dplyr. Full support for the new dplyr is coming soon.

# srvyr 0.2.0
* Added support for database backed surveys, using dplyr's handling of
DBI. Because of problems interacting with the survey package twophase designs
do not work.

# srvyr 0.1.2
* Fixed a problem with confidence levels not being passed into quantiles

* Added deff parameter to `survey_mean()`, `survey_total()` and `survey_median()`, and
a df parameter to those functions and `survey_quantile()` / `survey_median()`.

* `summarize` and `mutate` match dplyr's behavior when arguments aren't named
(uses `dplyr::auto_name()`)

# srvyr 0.1.1

* New function `cascade` summarizes groups, and cascades to create
summary statistics of groups of groups.

* Fixed a bug for confidence intervals for `survey_total()` on groups.

* Fixed some issues with the upcoming version of dplyr.

0 comments on commit 2e17c43

Please sign in to comment.