View source: R/write_sym_table.R
write.sym.table | R Documentation |
This function write (save) a symbolic data table from a CSV data file.
write.sym.table(sym.data, file, sep, dec, row.names = NULL, col.names = NULL)
sym.data |
Symbolic data table |
file |
The name of the CSV file. |
sep |
As in R function read.table |
dec |
As in R function read.table |
row.names |
As in R function read.table |
col.names |
As in R function read.table |
Write in CSV file the symbolic data table.
Oldemar Rodriguez Rojas
Bock H-H. and Diday E. (eds.) (2000). Analysis of Symbolic Data. Exploratory methods for extracting statistical information from complex data. Springer, Germany.
read.sym.table
## Not run:
data(example1)
write.sym.table(example1, file = "temp4.csv", sep = "|",
dec = ".", row.names = TRUE, col.names = TRUE)
ex1 <- read.sym.table("temp4.csv", header = TRUE,
sep = "|", dec = ".", row.names = 1)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.