Changes in version 1.3.1.9000 - Using .by in summarize() and mutate() now ungroups the result, matching dplyr behavior (#200, thanks @stephenashton-dhsc) - Fixed a bug when collecting after subsetting a database backed survey (#205, thanks @szimmer) - Underscore functions like as_survey_design_() and mutate_()` have been completely removed, following dplyr's lead in 1.2.0 Changes in version 1.3.1 (2026-02-02) - interact() now can be used programmatically (#187, thanks @larmarange). - cascade() now puts the filled value last for character values (#189, thanks @szimmer). - Argument .by in mutate() now accepts multiple arguments (#193, thanks @stephenashton-dhsc) - survey_median() now warns if quantiles argument is provided (#197, thanks @mahjabinoyshi) - Fix for upcoming survey release (#198) - Fix for upcoming dplyr release (#199) Changes in version 1.3.0 (2024-08-19) - as_survey_rep() now has an argument degf, corresponding to the same argument in the survey function svrepdesign(). This argument can be useful for large data sets, since specifying a value for degf avoids a calculation which can be slow for very large data sets, (#171, @bschneidr). - Speed improvements for summarize when there are many groups (#168, thanks @etiennebacher) - Improvements to printing (#166, thanks @szimmer) - Fix for situations where filtering a calibrated/PPS survey design when filtering 0 rows (#159, @bschneidr) - Fix for anonymous functions in rename_with() (#172, thanks @josiahg2) - Fix for chaining filter & group_by in database backed surveys (#173, thanks @jamgreen) - Fix for comma separated filters in database backed surveys (#173, thanks @jamgreen) - Fix for survey_prop when 0 observations are found in a group (#156, thanks @yannsay-impact) - groups are now preserved when as_survey and related functions are called on a grouped_df (#178, thanks @rossellhayes). - Fix so that .by argument works like it does for dplyr in summarize and mutate (#179, thanks @szimmer) - mutate now by default unpacks srvyr summary statistics like survey_mean() instead of leaving them packed Changes in version 1.2.0 (2023-02-21) - survey_prop() now uses proportions as the default, which should confidence interval improve coverage, but does mean results may slightly change (#141, #142, thanks @szimmer) - New function survey_corr() calculates the correlation between 2 variables, (#150, #151, thanks @szimmer & @bschneidr) - Added method for dplyr::reframe for srvyr's objects - The function as_survey_rep() now accepts type="ACS" and type="successive-difference" for user-supplied replicate weights. (#153, thanks @bschneidr) - Squashed some deprecation warnings introduced by dplyr 1.1.0 (which is now the minimum version) Changes in version 1.1.2 (2022-10-05) - Fix for upcoming version of tidyselect (#147, thanks @hadley) Changes in version 1.1.1 (2022-02-20) - Add function cur_svy_wts() to access the survey weights (#136, #139, thanks @ray-p144 and @bschneidr) - Allow access to survey context functions like cur_svy() and cur_svy_wts() in mutate and filter (#138, #139, thanks @ray-p144 and @bschneidr) - Improve behavior of interact() when using cascade()(#133, thanks @szimmer) - Fix a bug with non-standard names of grouping variables (like 1234) in cascade (#132, thanks @szimmer) Changes in version 1.1.0 (2021-09-29) - Uses the new quantile functions provided in version 4.1 of the survey package. The old survey quantile functions can be accessed with survey_old_quantile() and survey_old_median() - Adds a new function interact that makes it easier to calculate proportions among interacted groups - "Filering joins" (anti_join and semi_join) are now available for srvyr objects. You must put the tbl_svy object first. (#65, #120, @bschneidr) - Auto-unpacking of data.frames works even inside of a named data.frame column (like one created by dplyr::across). (#129) - Miscellaneous documentation improvements (#119, #126, #127) Changes in version 1.0.1 (2021-03-28) - survey_mean() with no x no longer errors when there are no grouping variables (#117) Changes in version 1.0.0 (2020-12-01) - summarize has been rearchitected, - main user facing improvements are: - dplyr::across() now works within it - dplyr functions like dplyr::cur_group(), dplyr::cur_group_id(), dplyr::cur_data() work in it (as well as new analogous functions srvyr-specific cur_svy() and cur_svy_full()) - The only known breaking change is: - objects in the summarize will refer to the output of summarize before the input. Meaning code that looks like this: dstrata %>% summarize(api99 = survey_mean(api99), api_diff = survey_mean(api00 - api99)) will now error because it calculates the mean of api99 before using it inside of the calculation for api_diff. This behavior better matches dplyr's so will likely be kept. - Support for group_map()/group_walk()/group_map_dfr(), group_split(), group_nest() and nest_by() were added for tbl_svy objects. - Support drop_na from tidyr (#107). - as_survey() and as_survey_() are now idempotent: given a srvyr survey object (a tbl_srv), they return it unchanged. If extra arguments are provided, they are ignored with a warning (#97, thanks @krivit). - rename_with() now works with surveys (#96, thanks @krivit). Changes in version 0.4.0 (2020-07-30) - Fix to ensure that ordered factors can be used as grouping variables or as inputs to survey_count and survey_tally (#92, thanks for reporting @szimmer & @walkerke & for fixing @bschneidr). - Fix to ensure that numeric values can be used in grouping variables (#78 & #74, thanks for reporting @tzoltak & fix @bschneidr) - Some improvements for dplyr 1.0 (#79) transmute() now works (thanks for reporting @caayala), summarise()'s .groups argument is respected, and multi-row returns to summarise() work. (Unfortunately the new across() function isn't quite supported in summarise() yet, it will hopefully come soon) Changes in version 0.3.10 (2020-05-26) - Another fix for upcoming dplyr - Fix in vignette for changes to vardpoor package Changes in version 0.3.9 (2020-05-04) - Fix for upcoming version of dplyr (thanks @romainfrancois) Changes in version 0.3.8 (2020-03-07) - unweighted now evaluates in the right context and so will provide correct error when an incorrectly interpolated function is used (#70, thanks for reporting @tlmcmurry) - filter_at works now, (#57, thanks for reporting @dcaseykc & helping @bschneidr). - Fix for upcoming version of tibble (#72). Changes in version 0.3.7 (2020-01-17) - filtering 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). Changes in version 0.3.6 (2019-10-05) - Small update to quasiquotation syntax inside unweighted to improve consistency with recent rlang updates (#54). - Added functions survey_tally() and survey_count() (#53) Changes in version 0.3.5 (2019-07-09) - 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). Changes in version 0.3.4 (2019-01-20) - survey_mean/survey_total allow deff="replace" like their survey package forbearers. (#46, thanks @mandes95) - Fixes for new release of dplyr Changes in version 0.3.3 (2018-05-22) - 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!) Changes in version 0.3.2 (2018-05-04) - Bug fix for calculating multiple quantiles on grouped data (#38, thanks @iantperry) Changes in version 0.3.1 (2018-03-10) - 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. Changes in version 0.3.0 (2018-01-24) - 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/ Changes in version 0.2.2 (2017-06-23) - Remove test blocking survey update Changes in version 0.2.1 (2017-04-26) - 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. Changes in version 0.2.0 (2016-09-26) - 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. Changes in version 0.1.2 (2016-06-28) - 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()) Changes in version 0.1.1 (2016-04-03) - 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.