RE: [math] Poisson distribution to show how many ambulances are dispatched per hour

2015-08-31 Thread Kulpanowski, David
hed++) { System.out.println("Likelihood of " + dispatched + " ambulances dispatched is " + ambulanceDistribution.probability(dispatched) + "\n"); } } Cheers, - Ole On 08/31/2015 11:21 AM, Kulpanowski, David wrote: > Hi: > I am working on a relatively simple project. I

[math] JDBC output to generate statistical results.

2014-08-26 Thread Kulpanowski, David
Using jdbc I am querying my database of ambulance response times. My goal is to take the output and process it into statistics using Jakarta Commons Math library. So far I am successful in querying my database and outputting the response times to the console. My next step is to process this

RE: [math] JDBC output to generate statistical results.

2014-08-26 Thread Kulpanowski, David
)); } This way statistics will be printed for each row in the result set. Regards, Benedikt P.S.: Jakarta is an old name, that is not used any more. The name of the project now is simple Apache Commons and you're using Apache Commons Math. 2014-08-26 15:03 GMT+02:00 Kulpanowski, David dkulpanow

RE: [math] JDBC output to generate statistical results.

2014-08-26 Thread Kulpanowski, David
. Gruss bernd -- http://bernd.eckenfels.net - Ursprüngliche Nachricht - Von: Kulpanowski, David dkulpanow...@leegov.com Gesendet: ‎26.‎08.‎2014 15:55 An: Commons Users List user@commons.apache.org Betreff: RE: [math] JDBC output to generate statistical results. Thank you Mr