ahodder
ahodder

Reputation: 11439

How to find the regression of a given input in java?

I have a two array inputs of data. Call them p and t. I need to find the regression function of these columns so I can accuratly predict future values. Is there any way to do this with in java? If so, what is the best way?

Upvotes: 0

Views: 99

Answers (1)

toto2
toto2

Reputation: 5326

I know of: apache commons math (see stat.regression).

Upvotes: 2

Related Questions