How much data is "HUGE"? Are you thinking of, say, asking 100,000 people 100 questions each? That's 10 million rows. For current computers, that is not a problem.

Just stick the data in a database. When you need to process it, the time taken to process the data will be minor compared to the effort of figuring out what questions to ask. If you know that particular items are going to be relevant (for instance the survey you're looking at, the age of the respondant, etc) then add appropriate indexes. Trying to optimize further at this point is seriously premature.

Several additional comments. First of all if the researchers have any statistical analysis packages that they are used to using, be prepared to export data in a format that those packages can use. Seriously, if you can write yourself out of the "thought-question-answer" loop, do so. On the same lines, if they don't have favorite tools, then seriously consider giving them one that doesn't involve you. For instance export the data in some Access friendly format, load the data into Access, then show them how to use Access. And finally, be prepared to learn some statistics yourself. For instance I've used tools like Statistics::Regression to good effect, but unless you know what they do or whether they fit, you won't be able to use them. (Or worse yet - and very commonly - you'll use them as a magic oracle and misinterpret the results.)


In reply to Re: Research App Optimization by tilly
in thread Research App Optimization by sskohli

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.