Values to CSV
valuesToCsv(x, dec = ".", sep = ",", na = "", qchar = "\"", qmethod = c("double", "escape")[1])
x | vector of values representing a row in a CSV file |
---|---|
dec | decimal character |
sep | field separating character |
na | text to be used in case of NA values |
qchar | quoting character to be used to surround text fields containing the field separator |
qmethod | method used to indicate that a quoting character within a quoted text field is not the ending quote. Either "double" (double the quote character) or "escape" (backslash in front of the quoting character). |