RE: [statistics] Proposed OLS grammar

2019-07-19 Thread Ben Nguyen
you for your time, I appreciate any input you can give me. Cheers, -Ben Nguyen From: Paul King Sent: Friday, July 19, 2019 6:26 AM To: Commons Developers List Subject: Re: [statistics] Proposed OLS grammar There are about 10 files using classes from the math3.stat package in the examples I

Re: [statistics] Proposed OLS grammar

2019-07-19 Thread Paul King
There are about 10 files using classes from the math3.stat package in the examples I mentioned. I have stayed away from math4 while it's still snapshot. Repo: https://github.com/paulk-asert/groovy-data-science Slides: https://speakerdeck.com/paulk/groovy-data-science Most of the examples are in

Re: [statistics] Proposed OLS grammar

2019-07-19 Thread Gilles Sadowski
Hi. Your experience as a user of "Commons Math" would be most useful to help us craft a better (or, at least, no worse) design for "Commons Statistics". Would you share pointers to actual use-cases? Thanks, Gilles 2019-07-19 7:03 UTC+02:00, Paul King : > Cool. I'd be keen to try out the API, whe

Re: [statistics] Proposed OLS grammar

2019-07-18 Thread Paul King
Cool. I'd be keen to try out the API, when you are ready, in my "Apache Groovy for data science" examples which currently use the commons math3 classes. Cheers, Paul. On Fri, Jul 19, 2019 at 9:51 AM Gilles Sadowski wrote: > > Hi. > > Le ven. 19 juil. 2019 à 01:45, Paul King a écrit : > > > > Ho

Re: [statistics] Proposed OLS grammar

2019-07-18 Thread Gilles Sadowski
Hi. Le ven. 19 juil. 2019 à 01:45, Paul King a écrit : > > How does this relate to the OLS classes in commons math? > https://commons.apache.org/proper/commons-math/javadocs/api-3.6.1/org/apache/commons/math3/stat/regression/OLSMultipleLinearRegression.html The new "Commons Statistics" component

Re: [statistics] Proposed OLS grammar

2019-07-18 Thread Gilles Sadowski
https://www.baeldung.com/java-inner-interfaces interface Regression { interface Data { // ... } interface Result { // ... } } Le ven. 19 juil. 2019 à 01:20, Alex Herbert a écrit : > > > > > On 18 Jul 2019, at 23:49, Eric Barnhill wrote: > > > > I suggested the fo

Re: [statistics] Proposed OLS grammar

2019-07-18 Thread Paul King
How does this relate to the OLS classes in commons math? https://commons.apache.org/proper/commons-math/javadocs/api-3.6.1/org/apache/commons/math3/stat/regression/OLSMultipleLinearRegression.html On Fri, Jul 19, 2019 at 8:50 AM Eric Barnhill wrote: > > I suggested the following grammar to aim fo

Re: [statistics] Proposed OLS grammar

2019-07-18 Thread Alex Herbert
> On 18 Jul 2019, at 23:49, Eric Barnhill wrote: > > I suggested the following grammar to aim for in our meeting today with the > developing OLS module. If you see anything you'd prefer to change let's > establish it now , if anyone doesn't like it later, it's on me. > > RegressionData data =