You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are varying output formats across the package - write.table('*.txt', sep = ","), write.table('*.txt', sep = "\t"), write.csv('*.csv'), write.csv('*.txt')
We should decided on the preferred output and/or just be explicit when outputting - comma-delimited = .csv, tab-delimited =.txt ..i.e. should not have write.table to a .txt with a sep=","
The text was updated successfully, but these errors were encountered:
There are varying output formats across the package -
write.table('*.txt', sep = ",")
,write.table('*.txt', sep = "\t")
,write.csv('*.csv')
,write.csv('*.txt')
We should decided on the preferred output and/or just be explicit when outputting - comma-delimited =
.csv
, tab-delimited =.txt
..i.e. should not havewrite.table
to a.txt
with asep=","
The text was updated successfully, but these errors were encountered: