View source: R/text_to_columns.R
text_to_columns | R Documentation |
Convert delimited text lines to data.frame. Blank lines are always skipped, trailing whitespaces are trimmed. You can use comments with '#' inside your text. For details see read.table.
text_to_columns(
text,
header = TRUE,
sep = "",
quote = "",
dec = ".",
encoding = "unknown",
...
)
text_to_columns_csv(
text,
header = TRUE,
sep = ",",
quote = "",
dec = ".",
encoding = "unknown",
...
)
text_to_columns_csv2(
text,
header = TRUE,
sep = ";",
quote = "",
dec = ",",
encoding = "unknown",
...
)
text_to_columns_tab(
text,
header = TRUE,
sep = "\t",
quote = "",
dec = ".",
encoding = "unknown",
...
)
text_to_columns_tab2(
text,
header = TRUE,
sep = "\t",
quote = "",
dec = ",",
encoding = "unknown",
...
)
text |
character/vector of characters |
header |
a logical value indicating whether the |
sep |
the field separator character. Values on each line of the file are
separated by this character. If sep = "" (the default for |
quote |
the set of quoting characters. To disable quoting altogether, use quote = "". |
dec |
the character used in the file for decimal points. |
encoding |
encoding to be assumed for input strings. It is used to mark character strings as known to be in Latin-1 or UTF-8 (see read.table). |
... |
further parameters which will be passed to read.table. |
data.frame
text_to_columns("
# simple data.frame
a b c
1 2.5 a
4 5.5 b
7 8.5 c
")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.