Search: Search took 0.07 seconds.

  1. Replies
    282
    Views
    165,734

    The hockey stats are only available if you're a...

    The hockey stats are only available if you're a member of a yahoo group (free). The data is also CSV-only and updated after each season, but contains just about every NHL-season's worth of individual...
  2. Replies
    282
    Views
    165,734

    How many of you analytical minds use historical...

    How many of you analytical minds use historical (i.e. last year's) data? I'm guessing you're aware of the Lahman-database @ http://www.baseball1.com/?

    There is similar data available for hockey in...
  3. Replies
    282
    Views
    165,734

    Like I said, language is secondary. Choose the...

    Like I said, language is secondary. Choose the one you're comfortable using, be it Python or .net or whatever. For this project, it's still going to be the output that matters. As far as I know, no...
  4. Replies
    282
    Views
    165,734

    Not that it really matters, but parsing a CSV...

    Not that it really matters, but parsing a CSV file with C# is just a few lines of code too :).



    Textreader tr = new StreamReader(fileName);
    string line;
    while ((line = tr.ReadLine()) != null)...
Results 1 to 4 of 4