Skip to content

Commit

Permalink
correct replace_na and replace_boolean arguments text
Browse files Browse the repository at this point in the history
  • Loading branch information
vbfelix committed Apr 9, 2024
1 parent 411fa6c commit f19584a
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: relper
Title: Miscellaneous Functions for Data Preparation, Cleaning, and Visualization
Version: 3.13.0
Version: 3.13.1
Authors@R: person("Vinícius", "Félix", email = "vinicius1b7f@gmail.com", role = c("aut", "cre"))
Description: A collection of functions to help with data preparation, cleaning, and visualization. relper offers functions to: transform and format data (e.g., easily apply the percentage), compute metrics (e.g., coefficient of variation), check conditions (e.g., determine if a number is even or odd), supply lovely and varied color palettes (e.g., palettes inspired by TV series and movies), complement ggplot2 (e.g., add an identity line to a scatter plot), manipulate strings (e.g., keep only a type of character). The package's ultimate purpose is to simplify data analysis by providing functions that will shorten some steps.
Depends: R (>= 3.6.0)
Expand Down
2 changes: 1 addition & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
>
> *These additions transform the package into a comprehensive "Data Insight Toolbox," empowering users to gain deeper insights and perform advanced analyses on their datasets. Additionally, some functions have been renamed for better clarity and consistency.*
## relper 3.13.0
## relper 3.13.1

**Additions**

Expand Down
4 changes: 2 additions & 2 deletions R/replace_boolean.r
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
#' @description Replace a boolean
#'
#' @eval arg_vector("x","boolean")
#' @eval arg_value("true_value","a value to replace TRUE values in x")
#' @eval arg_value("false_value","a value to replace FALSE values in x")
#' @eval arg_value("true_value","",action = "will replace TRUE values")
#' @eval arg_value("false_value","",action = "will replace FALSE values")
#'
#' @return A numeric value
#'
Expand Down
2 changes: 1 addition & 1 deletion R/replace_na.r
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#' @description Replace a NA value
#'
#' @eval arg_vector("x","")
#' @eval arg_value("na_value","a value to replace NA values in x")
#' @eval arg_value("na_nalue","",action = "will replace NA values")
#'
#' @return A numeric value
#'
Expand Down
4 changes: 2 additions & 2 deletions man/replace_boolean.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion man/replace_na.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit f19584a

Please sign in to comment.