Changelog
Source:NEWS.md
gssr 0.8
- Updated to Release 2 of the 1972-2024 cumulative data file. See the official GSS page for more details. From the announcement: “Release 2 of the 2024 GSS Cross-section data are now available. This updated data features questions related to religious affiliation and practice, industry and occupation, household composition, and new topical questions. We encourage users to review the documentation and consider the potential impact of the experiments and data collection approach on the survey estimates. Release 2 also reflects adjustments to some variables following a disclosure review process that was implemented to better protect GSS respondent privacy (for details, see the GSS 2024 Codebook).”
gssr 0.7
- Updated to the newly released cumulative data file, covering 1972-2024. See the official GSS announcement for what’s new in the data file.
gssr 0.6
- Fixed a reshaping error in the 2006, 2008, and 2010 panel datasets (
gss_panel06_long,gss_panel08_long, andgss_panel10_long) which led to the values of some variables being incorrectly attributed across waves. Thanks to Pat Hastings for identifying the error. - Updated the 2006, 2008, and 2010 panel datasets.
gssr 0.5
- Split
gssrinto two packages: gssr (the data sets) and{gssrdoc}(the integrated documentation). Rationale: The goal of this version of the package is to allow for binary installs via R-Universe. A binary package allows for faster installation, which matters here because gssr is a large package. Given the current resource limits of the GitHub runners that build packages, R-Universe can’t build gssr with all the documentation. So I am experimenting with splitting it into two packages: gssr, which contains the data and thegss_get_yr()function, and{gssrdoc}, which integrates the GSS codebook into R’s help system. It includes thegss_dictobject and the panel documentation objectgss_panel_doc. I recommend you install both packages.
gssr 0.4.5
- Add
get_which_ballots()function to return tibble of ballots a question appeared on. - Add
var_ballotslist column togss_dictobject, indicating the distribution of answers across ballots for each Q. - gssr now passes
R CMD checkwith noERRORSorWARNINGS - Fix vars with text like
[NAME]and[PROMPT]so they do not try to autolink in Rd build process.
gssr 0.4.2
- Update
gss_allto Release 2a of the 1972-2022 Cumulative Data File (January 2024) - Update the documentation to Release 2a also.
gssr 0.4
- Added the latest cumulative file (1972-2022) and the latest panel data (2020, release 1a).
- Integrated help: every variable in the cumulative file has an R manual page (like a function would). You can browse the pages in the help viewer or query variables by name from the console with
?, as you would with any documented object or function. -
gss_get_yr()can now fetch the 2022 cross-sectional file -
gss_get_yr()now correctly downloads the 2021 crossectional file - Removed
gss_get_marginals()andgss_get_props()as these are largely superseded by the new built-in variable documentation. -
gss_dictincorporates additional information.
gssr 0.3.5
gss_get_years()has been renamed togss_which_years()to make it less confusingly similar to thegss_get_yr()function. The former looks to see when a question was asked. The latter pulls a given year’s dataset from the GSS website.Update the base URL in
gss_get_yr(). Thanks to (@lindsaypoirier.)
gssr 0.3.4
-
gss_allnow includes the 2021 data release imported from the GSS 1972-2021 Cross-Sectional Cumulative Data (Release 1, Nov. 1, 2021). The documentation tibble does not yet include the 2021 variables.
gssr 0.3.2
- In
gss_allretain STATA missing codes for IAP, Can’t choose, and DK. (Thanks to @dustinstolz.)
gssr 0.3.1
- The panel documentation tibble,
gss_panel_doc, has been updated to a wide format that makes it easier to browse the variables.
gssr 0.2.0
- Created a
dratrepository forgssrat http://kjhealy.github.io/drat. - Added installation instructions covering
dratto the documentation.