JQuery CSV & FLOT

JQuery CSV & FLOT

I found this plugin on the jQuery site.  I'm having some trouble with it because what I'm looking for is something that will break csv data into an array of arrays.

Let's say for instance I have [date,keyword,search_engine,search_ranking] as the csv headers.  I would assume the plugin would break the array into something where first dimension would reflect the row number, and the second, third, forth, & fifth would reflect the date, keyword, search_engine, & search_ranking respectively (or any other fields set by the delimiter).

It seems that this plugin breaks the data into a single dimension array where the instance is the entire row of data as a string with commas (not delimited).  So in my example, array[0] = "date, keyword, search_engine, search_ranking"

I couldn't find much discussion about this plugin and I was wondering if anyone out there can explain this to me, or suggest a better plugin.

My goal is to import a csv data to chart using the flot plugin.  I need an array of arrays.