Skip to content
Snippets Groups Projects
Unverified Commit f37e67f9 authored by Laurent Modolo's avatar Laurent Modolo
Browse files

project.R: fix blancks problem in anova

parent b0e4e906
Branches
Tags
No related merge requests found
...@@ -67,7 +67,10 @@ analysis <- function(data_path = "data/") { ...@@ -67,7 +67,10 @@ analysis <- function(data_path = "data/") {
set_data <- set_analysis(paste0(data_path, "/", folder), set_data <- set_analysis(paste0(data_path, "/", folder),
meta = T) meta = T)
set_data$set <- folder set_data$set <- folder
set_data$drug <- paste0(set_data$drug, "_", folder) set_data$drug <- ifelse(set_data$drug %in% "None",
"None",
paste0(set_data$drug, "_", folder)
)
if (length(min_sets_factors) == 0) { if (length(min_sets_factors) == 0) {
min_sets_factors <- colnames(set_data) min_sets_factors <- colnames(set_data)
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment