I've an array of tuples each having 3 integers as members. I am unable to write it to a csv. I tried the following
writecsv("file.csv",termite)
Also tried the following
using DataFrames
writetable("file.csv", termite, separator = ',', header = false)
Both of them doesn't write the desired csv. What am I missing?
