Created
August 2, 2020 08:24
-
-
Save rahulbhadani/7f871f054e1e632a5a9f61c31d1de258 to your computer and use it in GitHub Desktop.
Reading CSV file with header and rownames in R.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
folder = "/home/ivory/VersionControl/scRNASeq/python-notebook/" | |
file = "FilteredCount.csv" | |
filepath = paste(folder, file, sep="") | |
csv = read.csv(filepath, sep=",", row.names = 1, header= TRUE) | |
mat = as.matrix(csv) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment