Recent Releases of excluder
excluder - excluder 0.5.2
MINOR IMPROVEMENTS
- User is alerted when applying
rename_columns()when columns are already renamed.
PACKAGE DEVELOPMENT
Tests for
*_ip()have been updated to account for new IP addresses outside of US.Examples requiring internet access are now interactive.
Tests requiring internet access are now skipped on CI in addition to CRAN.
BUG FIXES
- Fixed bug where data frames missing resolution columns could not rename columns.
DOCUMENTATION UPDATES
- URLs for
{rgeolocate}package now point toward URL for package archive.
Scientific Software - Peer-reviewed
- R
Published by JeffreyRStevens 9 months ago
excluder - excluder 0.5.1
NEW FEATURES
- Added new
qualtrics_fetch2dataset that includes labels as column names.
PACKAGE DEVELOPMENT
- The {tidyselect} package has deprecated using the
.datapronoun in tidy selections. So.datais no longer used inselect()or other selection functions. - We used the
usethis::use_tidy_description()to tidy up DESCRIPTION file.
BUG FIXES
- Fixed bug to now reassign column names when
rename = TRUE.
DOCUMENTATION UPDATES
- We have switched from the {devtools} to the {remotes} version of
install_github()in the README to reduce dependencies. - Because the {iptools} package has been removed from CRAN, the links to {iptools} functions now refer to the GitHub site.
Scientific Software - Peer-reviewed
- R
Published by JeffreyRStevens about 2 years ago
excluder - excluder 0.5.0
PACKAGE DEVELOPMENT
- The
{iptools}package has been replaced with the{ipaddress}package.
DOCUMENTATION UPDATES
- The Getting started vignette has been renamed excluder.
- The data sets have been added to the References page.
Scientific Software - Peer-reviewed
- R
Published by JeffreyRStevens about 3 years ago
excluder - excluder 0.4.0
NEW FEATURES
- The
use_labels()function extracts the Qualtrics question labels included when importing withqualtRics::fetch_survey()and renames the column names with these labels. - The
qualtrics_fetchdata set offers an example data set that is imported using thequaltRics::fetch_survey()function. - The
rename_columns()function renames the columns to match standard Qualtrics column names. This is primarily a utility function for themark_*()functions but may be useful to users in some circumstances.
MINOR IMPROVEMENTS
- For excluding based on screen resolution, previously you had to provide a minimum width or height. This works fine if all screens are in the same orientation, but if screens differ in their orientation, this isn't sufficient. Now there is an overall minimum argument
res_minthat will apply to both width and height. That is, now you can test if at least one of the dimensions has a resolution greater thanres_min. (#9)
DOCUMENTATION UPDATES
- To use several of the exclusion criteria, you must collect non-anonymized data and/or computer metadata. The documentation now points to the Qualtrics documentation about non-anonymized data and computer metadata.
PACKAGE DEVELOPMENT
- The package now has a logo!
- The number of CRAN downloads is now indicated by a badge.
- Tests for helper functions have been improved.
Scientific Software - Peer-reviewed
- R
Published by JeffreyRStevens over 3 years ago
excluder - excluder 0.3.3
BUG FIXES
- Updating
{dplyr}to 1.0.8 caught problem with usingacross()insideis.na(). Instead, it now usesif_all()withis.na()as argument. Thanks to @romainfrancois for pull request #7. remove_label_rows()now properly converts numeric data in Status and Finished columns.
Scientific Software - Peer-reviewed
- R
Published by JeffreyRStevens about 4 years ago
excluder - Release v0.3.2
MINOR IMPROVEMENTS
- The
remove_label_rows()function can now rename columns to match the default column names used in all of the verb function arguments. - The
mark_ip_()function now checks for (1) internet connectivity, (2) whether the IP address data can be downloaded from https://www.iwik.org/ipcountry/, and (3) if the country code is valid. The function fails gracefully if any of these are not met.
DOCUMENTATION UPDATES
- The README and vignette have clarified that multiple
check_*()functions should not be piped. - The
*_ip()function documentation has clarified the internet connectivity requirements.
PACKAGE DEVELOPMENT
- The paper for the
{excluder}package has now been published in Journal of Open Source Software. The JOSS badge has been added to the README. - Tests for
*_ip()functions are now skipped on CRAN to avoid timeout delays. - Clean up package in preparation for submission to CRAN.
- Accepted on CRAN!
Scientific Software - Peer-reviewed
- R
Published by JeffreyRStevens over 4 years ago
excluder - Release v0.3.1
MINOR IMPROVEMENTS
- The messages now use
{cli}to generate messages that more clearly outputs numbers and text. - All functions now print the output data frames by default but can all be turned off with
print = FALSE. *_ip()functions now includeinclude_naas an argument (like*_duplicates()and*_location()functions), so users can decide whether to include NA values in the data that meet exclusion criteria.- There are now five new utility functions that help simplify the primary verb functions.
keep_exclusion_column()allows users to keep the exclusion column in the output fromcheck_*()functions and moves the column the first column in the output.mark_rows()does the bulk of the work creating new columns for exclusion criteria and marking rows that meet the criteria.print_data()controls whether the output is printed to the console.print_exclusion()generates the message about how many rows were excluded by theexclude_*()functions.validate_columns()validates the number, names, and type of columns that are inputted as arguments in the verb functions. - The NEWS.md file is now based on the rOpenSci template.
BUG FIXES
- The
unite_exclusions()function now properly removes multiple separators when multiple exclusion criteria are used. - The
mark_duplicates()function now properly counts and includes the correct number of NAs for both IP addresses and locations and properly prints data.
PACKAGE DEVELOPMENT
- The
{excluder}package has now been approved by and transferred to rOpenSci. The package was peer reviewed by Joseph O'Brien (@jmobrien) and Julia Silge (@juliasilge), who are now listed as reviewers in the DESCRIPTION file.
Scientific Software - Peer-reviewed
- R
Published by JeffreyRStevens over 4 years ago
excluder - Release v0.3.0
- The primary functionality of the package has moved from the
check_*()functions to themark_*()functions. Thus,check_*()andexclude_*()now first callmark_*()to mark the rows with exclusion criteria, then filter the excluded rows. The documentation forcheck_*()andexclude_*()now inherit the arguments frommark_*(). This change has been updated in the README and Getting Started vignette. collapse_exclusions()has been renamedunite_exclusions()to match {tidyverse} terminology.collapse_exclusions()is now deprecated and will be removed later.unite_exlusions()also switched from using NA to "" for rows with no exclusions. Combined columns now no longer have leftover separators.- The
mark_durations()function now marks fast and slow durations separately. exclude__*()functions now haveprint = FALSEandquiet = TRUEset as default argument values.- Calls to
rbind()have been replaced withbind_cols()anddplyr::pull()has been replaced with[[]]. - Calls to
all_of()andany_of()now refer to {tidyselect} rather than {dplyr}. if()statements are now more robust by usingidentical()rather than==and&&instead of&.- The {stringer} package is now imported instead of suggested.
- The
*_ip()functions and documentation have been updated to fix a bug/typo to clarify that they mark, check, and exclude rows with IP addresses outside of the specified country. - Package links are replaced with external URLs.
- All mark, check, and exclude functions for a particular exclusion type have been combined into a single R file. So now each exclusion type has its own R file. Similarly, data file scripts have been combined into a single file.
Scientific Software - Peer-reviewed
- R
Published by JeffreyRStevens over 4 years ago
excluder - Release v0.2.2
- Lifecycle has been updated to Stable, and the repo status of Active has been added.
- There is now a Getting Started Excluding Data vignette that gives an overview of package usage.
- Users can now specify the separator used between exclusion types in the
collapse_exclusions()function. They can also opt to not remove the excluded columns. - A bug in the
collapse_exclusions()function was fixed, so now a subset of exclusion columns can be collapsed into a single column. - A bug in the
remove_label_rows()function was fixed, so now the Finished column is converted to a logical vector. - A codemeta.json file was created.
- URLs have been replaced or tweaked to address CRAN package check warnings.
- Functions are now organized by topic in the Reference page of the website.
Scientific Software - Peer-reviewed
- R
Published by JeffreyRStevens over 4 years ago
excluder - Release v0.2.1
- The argument name for the data frame switched from
.datatoxto avoid confusion with the{rlang}use of.data. - Instead of using
quo()andsym()to create new names for columns used as arguments,.data[[var]]is now used. - The
dupe_countcolumn was removed fromcheck_duplicates()output. Tests were adjusted to account for the new number of columns. check_duplicates()now specifies the number of NA columns.- URLs have been replaced or tweaked to address CRAN package check warnings.
- Links function reference pages have been added to the README.
Scientific Software - Peer-reviewed
- R
Published by JeffreyRStevens over 4 years ago
excluder - Release v0.2.0
- The
deidentify()function was added, which removes IP address, location, and computer information columns.
Scientific Software - Peer-reviewed
- R
Published by JeffreyRStevens almost 5 years ago
excluder - Release v0.1.0
- The
check_qualtricsargument was removed fromremove_label_rows()because the functionality did not make sense. This breaks backwards compatability. remove_label_rows()now only filters out label rows if label rows are present and outputs invisibly.- Tests were added for the
qualtrics_rawdataset and theremove_label_rows()function. - Package-level documentation was created.
Scientific Software - Peer-reviewed
- R
Published by JeffreyRStevens almost 5 years ago
excluder - Release version 0.0.1
remove_label_rows()now converts character columns to dates for multiple date formats, including YYYY-MM-DD HH:MM:SS, YYYY-MM-DD HH:MM, MM:DD:YYYY HH:MM:SS, and MM:DD:YYYY HH:MM (#1).Code of Conduction and Contributor Guide are added.
Citation and Contributor sections are added to README.
Scientific Software - Peer-reviewed
- R
Published by JeffreyRStevens almost 5 years ago
excluder - Initial release
This is the initial release of excluder.
Scientific Software - Peer-reviewed
- R
Published by JeffreyRStevens almost 5 years ago