A while back you helped me get my netflow data working on Gephi, with weights. As a reminder I ended up using DL format :
<src_ip>, <dst_ip>, <number of packets>
This all works beautifully

Now I would like to add time to the picture. In netflow there is a start_time and an end_time for the flow. I would like to use this to get a timeline dynamic graph.
I don't think my DL format will do this, and I have seen some examples for spreadsheet CSV format but that does not include weight. Here is my question: what is the best data input format for my netflow data? There is a lot of it so I would prefer not to have a markup format, but would prefer a CSV format if possible.
Like this??
<src_ip>, <dst_ip>, <number of packets>, <start_time>, <end_time>
From the spreadsheet CSV example I can see "<(1,10]>" as an example of time but used with a node.
Can I do a spreadsheet like this:
Source, Target, Weight, Time Interval
<src_ip>, <dst_ip>, <number of packets>, "(start_time, end_time)"
Can I do a normal CSV format (as opposed to a spreadsheet) ?
Thanks