read_text | R Documentation |
Read .txt
, .tab
, .data
(text) file.
read_text(
filename,
delimiter = NULL,
first_column_names = NULL,
dtype = "float32"
)
filename |
Data file, filename or stream. |
delimiter |
Delimiter that separates data within text file.
If |
first_column_names |
Assume the first column stores row names. |
dtype |
Numpy data type. |
Same as read_csv()
but with default delimiter NULL
.
## Not run:
ad <- read_text("matrix.tab")
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.