As was foretold, we've added advertisements to the forums! If you have questions, or if you encounter any bugs, please visit this thread: https://forums.penny-arcade.com/discussion/240191/forum-advertisement-faq-and-reports-thread/
Options

Number of days between no hitters?

Folken FanelFolken Fanel anime afWhen's KoFRegistered User regular
edited March 2007 in Help / Advice Forum
So I'm a grad student studying mathematics and I need to analyze a set of data and run some tests to decide what class of distribution the data belongs to. I'm interested in finding out the number of days that pass between no-hitters that are thrown in major league baseball. However, the biggest problem I'm having is finding said information. Wikipedia gives each no hitter ever thrown and the date of each, but calculating the number of days between each event would be a giant pain in the ass. Is there any chance that someone knows of such a site that will give me the number of days between no hitters?

Twitter: Folken_fgc Steam: folken_ XBL: flashg03 PSN: folken_PA SFV: folken_
Dyvim Tvar wrote: »
Characters I hate:

Everybody @Folken Fanel plays as.
Folken Fanel on

Posts

  • Options
    lowlylowlycooklowlylowlycook Registered User regular
    edited March 2007
    Here is a java function to calculate the number of days between two dates.

    linky

    lowlylowlycook on
    steam_sig.png
    (Please do not gift. My game bank is already full.)
  • Options
    Paul_IQ164Paul_IQ164 Registered User regular
    edited March 2007
    Or else there's a website here: http://www.timeanddate.com/date/duration.html that does the same thing. Unless you can cleverly get something to parse the table from Wikipedia, I don't see any faster way of doing things. I can't imagine any website keeps track of such an arcane statistic (or so it sounds to me - I have no clue how baseball works).

    Paul_IQ164 on
    But obviously to make that into a viable anecdote you have to tart it up a bit.
    Tetris: 337214-901184
    Puzzle League: 073119-160185
  • Options
    PheezerPheezer Registered User, ClubPA regular
    edited March 2007
    ugh, this is giving me bad flashbacks, but you can extract the HTML for that table into a new, really basic HTML doc (just give it <HTML> <BODY> and </BODY> </HTML> before and after the table, literally nothing else) and tell Excel to import the data from that file. It'll work. It might be slow depending on how much data (expect about 1 full minute of delay for 1 MB in file size on a 3 GHz Intel dual core CPU with 1 GB RAM) but if you let it sit for a while it'll eventually push out a result.

    There's even a nifty function in Excel for calculating the difference in days between two dates, and I'm pretty sure there's a working function for calculating the difference in weekdays, and you can give it a list of holidays to skip. I say I'm pretty sure and "working" because if you've got a bit of experience in the subject using Access, you'll note that Access hasn't been able to calculate business days properly since at least 1997. I don't know if Access 97 does it right either, in fact, I strongly suspect the function was broken back then, too.

    Pheezer on
    IT'S GOT ME REACHING IN MY POCKET IT'S GOT ME FORKING OVER CASH
    CUZ THERE'S SOMETHING IN THE MIDDLE AND IT'S GIVING ME A RASH
  • Options
    LavaKnightLavaKnight Registered User regular
    edited March 2007
    As an alternative to Pheezer's way (but I have no idea if it's easier or not): If you can copy the data straight up into a notepad file you could also open that notepad file (once saved) in Excel, comma-delineate the data, and then do the fancy functions.

    That's the way I learned how to process data into excel, but I have no idea if it's easier or harder than Pheezer's html method.

    LavaKnight on
  • Options
    ChenjesuChenjesu Registered User regular
    edited March 2007
    LavaKnight wrote: »
    As an alternative to Pheezer's way (but I have no idea if it's easier or not): If you can copy the data straight up into a notepad file you could also open that notepad file (once saved) in Excel, comma-delineate the data, and then do the fancy functions.

    That's the way I learned how to process data into excel, but I have no idea if it's easier or harder than Pheezer's html method.

    Actually, Excel stores dates as 5 digit numbers, always. 1/1/1900 is stored in Excel as "1", 3/24/2007 is stored as "39165", and is 39,165 days after January 1, 1900.

    Because Excel does this lookup accurately, you can just type the dates into Excel, and subtract each no-hitter date from the previous one. Make sure the cell that you're doing the subtraction in had the data type set to "number" rather than "date" and the cell will display the number of days between those two dates.

    Chenjesu on
  • Options
    The CatThe Cat Registered User, ClubPA regular
    edited March 2007
    So I'm a grad student studying mathematics and I need to analyze a set of data and run some tests to decide what class of distribution the data belongs to. I'm interested in finding out the number of days that pass between no-hitters that are thrown in major league baseball. However, the biggest problem I'm having is finding said information. Wikipedia gives each no hitter ever thrown and the date of each, but calculating the number of days between each event would be a giant pain in the ass. Is there any chance that someone knows of such a site that will give me the number of days between no hitters?

    Why aren't you using a stats package like SPSS? All you need is one column listing all dates, and another one coded as no-hitter (yes/no).

    This seems pretty damn basic for postgrad study...

    The Cat on
    tmsig.jpg
  • Options
    Folken FanelFolken Fanel anime af When's KoFRegistered User regular
    edited March 2007
    Well I gave up on this idea in favor of something easier so I could get this done for Monday and start on homework for other classes.

    I decided to see if the number of total homeruns each team hits in a given year is part of some distribution (turns out its normally distributed) using the Kolmogorov-Smirnov Test.

    Thanks for everyone's help though. I'll probably look into these suggestions when I don't have time constraints. Lock please.

    Folken Fanel on
    Twitter: Folken_fgc Steam: folken_ XBL: flashg03 PSN: folken_PA SFV: folken_
    Dyvim Tvar wrote: »
    Characters I hate:

    Everybody @Folken Fanel plays as.
Sign In or Register to comment.