read_csv {anndata} | R Documentation |
read_csv
Description
Read .csv
file.
Usage
read_csv(
filename,
delimiter = ",",
first_column_names = NULL,
dtype = "float32"
)
Arguments
filename |
Data file. |
delimiter |
Delimiter that separates data within text file. If |
first_column_names |
Assume the first column stores row names. |
dtype |
Numpy data type. |
Details
Same as read_text()
but with default delimiter ','
.
Examples
## Not run:
ad <- read_csv("matrix.csv")
## End(Not run)
[Package anndata version 0.7.5.6 Index]