Hi, I often want to read data from a CSV where my columns denote some floating point number. For example, I measure a set of time series', each corresponding to a different numerical setting. My CSV looks similar to:
t,1.2,1.3
1,2,3
4,5,6
When I load this with JuliaDB, for example, I need to select the columns as symbols, such as in the following example
using JuliaDB
db = loadtable("demo.csv");
select(db,Symbol(1.2))
I can, however, extend the definition in the following way which makes my life easier:
Hi, I often want to read data from a CSV where my columns denote some floating point number. For example, I measure a set of time series', each corresponding to a different numerical setting. My CSV looks similar to:
When I load this with JuliaDB, for example, I need to select the columns as symbols, such as in the following example
I can, however, extend the definition in the following way which makes my life easier:
Is there a good reason not to do this? If not, can this definition be added? Thanks!