Commit a89d6844 authored by GNajeral's avatar GNajeral

Merge branch 'master' into Guille

# Conflicts:
#	valid_variables_script_local.R
parents 47ee4e03 3a5d17b6
......@@ -51,7 +51,8 @@ file_name <- readline("Introduce the name of the file to check the values: ")
harmonized_data <- ""
if (grepl(".csv" , file_name , fixed = TRUE)){
harmonized_data <- read.csv(file_name, sep=";")
harmonized_data <- read.csv(file_name)
#harmonized_data <- read.csv(file_name, sep = ";")
}else if (grepl(".xlsx" , file_name , fixed = TRUE)){
harmonized_data <- read.xlsx(file_name)
}
......@@ -294,6 +295,7 @@ check_valid_values_binary <- function(colname, column) {
check_valid_values <- function(valid_colnames, codebook_param){
res <- ""
......
  • Change in check_valid_values functions, now only showing the actual number of failing values, not the values themselves

Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment