Skip to content

Commit

Permalink
Increment version number to 3.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
RDastgh1 committed Nov 18, 2024
1 parent d4cd397 commit 5bde7eb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: SciDataReportR
Title: Package for Generating Scientific Data Reports
Version: 3.1.0
Version: 3.2.0
Authors@R:
person("Raha", "Dastgheyb", , "[email protected]", role = c("aut", "cre"),
comment = c(ORCID = "https://orcid.org/signin"))
Expand Down
2 changes: 1 addition & 1 deletion R/RevalueData.R
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ RevalueData <- function(DatatoRevalue, VarTypes, missingVal = -999, splitchar =
if (type == "Categorical") {
RevaluedData[[var]] <- to_factor(RevaluedData[[var]])
}
if (type %in% c("Double", "Numeric", "Numerical", "numeric", "numerical", "double") {
if (type %in% c("Double", "Numeric", "Numerical", "numeric", "numerical", "double")) {
RevaluedData[[var]] <- as.numeric(RevaluedData[[var]])
}
if (type == "Ordinal") {
Expand Down

0 comments on commit 5bde7eb

Please sign in to comment.