This function takes a data frame, a file path, and a decimal point character as input, and writes the data frame to the file as a tab-separated ASCII text file, with no quotes around the values, no row names. The decimal point representation is by default a dot, but can be changed by the user.

write_ascii(data, path, dec = ".")

Arguments

data

A data frame that will be written to a text file.

path

The file path where the text file will be written.

dec

The character to be used as decimal point. Default is ".".

Value

NULL. The function is invoked for its side effect, which is writing the data frame to a text file.