R/chose_driver.R

Defines functions chose_driver

chose_driver <- function(scaling) {
    pwd.n = paste(getwd(), "/Preprocessing_Data_", scaling, "/ProcessedTable.csv", sep = "")
    x <- read.csv(pwd.n, sep = ",", header = TRUE)
    x.x <- x[, 2:ncol(x)]
    rownames(x.x) <- x[, 1]
    print(colnames(x.x[1:10]))
}
13479776/statTarget documentation built on Aug. 14, 2020, 1:58 p.m.