I am trying to use the SimpleRegression class (link). I first imported the .jar file as external jar into my project and I can see it is imported. When I try :
import org.apache.commons.math3.stat.regression.*;
I have no error message, so the jar file is correctly imported,
but when I import specifically the class I need:
import org.apache.commons.math3.stat.regression.SimpleRegression;
I get the message that SimpleRegression cannot be resolved.
Can somebody tell me what I did wrong? I downloaded the package from here .
thanks for your help