vote up 1 vote down star

My realtime app generates a data log: 100 words of data @10Khz. I need to analyze it and produce some plots of the results. There are intermediate calculations involved - I need to take some differences, averages, etc. Excel would work fine, except for:

  • the 32000 item limit on graph data series is too small - that's only 3 seconds of data.
  • the glacial speed at which it processes changes to graphs containing large data series is unbearable.

What are good alternatives to Excel for manipulating and plotting large quantities of data? I'm looking for something interactive, not a library.

flag

78% accept rate

3 Answers

vote up 2 vote down

For this sort of stuff we typically roll our own, but I know that isn't the solution you want. Can you use a good quality database (eg Oracle) to do the manipulation, then maybe put the summarized data back into Excel for the plotting? I believe Excel will link to databases these days, so you could make it quite automated.

Otherwise there are statistical tools like [SAS][1], but get your cheque book out first.

[1]: http://www.sas.com/technologies/analytics/statistics/stat/index.html SAS

link|flag
I think the long term solution will be to roll our own, but right now, I'm looking for something I can use this week. – AShelly Oct 30 '08 at 6:12
You could always go low end database like MSAccess then graph the statistics with Excel. I can't remember the record limit for Access, so maybe it wont hold all your data. – Richard A Oct 30 '08 at 12:04
vote up 2 vote down

There are also several free tools for analysing and plotting (see below). But I am not sure whether they have components to handle data in real-time.

  1. R (similar to SAS) for statistical computations
  2. octave (similar to Matlab) for mathematical computations
link|flag
vote up 1 vote down

In particle and nuclear physics the big tool is ROOT, which I have seen used in a "update every two seconds as the data comes in" mode with a lot of data and a modest amount of intermediate processing.

Mind you, the student who wrote that module was a very slick programmer, and it took a while to shake the bugs out, even so.

ROOT is available for free, and provides all kinds of tools and support.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.