expression_matrix_path.RdReturns the path to expression_matrix.csv shipped with the package
(same simulated gene-by-sample data as in exercise 1_Simple_Scripts).
expression_matrix_path()Character scalar, absolute path when the file is present.
path <- expression_matrix_path()
if (nzchar(path)) {
V <- load_expression_matrix(path)
dim(V)
}
#> [1] 50 100