I need to do some analysis of an arbitrary amount of time series in Java.
Among others i need to be able to use Linear regression, various smoothing techniques, filtering, etc.
I'm not very keen of writing all this from scratch so, do you know of any good Java libraries for these kind of analysis?
Edit:
R- Seems like an good choice. It has a powerful set of methods and has good external packages for doing statistical analysis, you can find functions for Linear regression,autocorrelation, holt-winters filtering etc.
I found an port between R and Java which allows R to run in Java.
This should be sufficient for my needs.