You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Download the zip file of project, unzip, import in eclipse as gradle project. It will download many jar files, and after the process finishes, there will be approx 25 errors. To fix those errors follow the next step.
Go to command, navigate to the eclipse directory, and give the following command:
Drive:\eclipse>java -jar lombok-x.xx.jar (mention exact name of lombok jar file)
Click on install/update button. Exit.
Exit and Restart eclipse.
Select the project folder and click on clean. This will rebuild the project and errors will be gone.
To use the library, create a new java project in eclipse, and go the java build path of project, and select the tab "Projects". Click on add, and select the three existing projects: The project of this library, the project with name "math" and the project with name "time-series"
To test the new project, create a new java class with Main function and use the following code in it:
public static void main(String[] args)
{
// TODO Auto-generated method stub
TimeSeries timeSeries = TestData.debitcards;
ArimaOrder modelOrder = ArimaOrder.order(0, 1, 1, 0, 1, 1); // Note that intercept fitting will automatically be turned off
Arima model = Arima.model(timeSeries, modelOrder);
Forecast forecast = model.forecast(1); // To specify the alpha significance level, add it as a second argument.
System.out.println(forecast);
System.out.println(forecast.pointEstimates().mean());
}
}
`
The text was updated successfully, but these errors were encountered:
Drive:\eclipse>java -jar lombok-x.xx.jar (mention exact name of lombok jar file)
`package testProj;
import com.github.signaflo.timeseries.TestData;
import com.github.signaflo.timeseries.TimeSeries;
import com.github.signaflo.timeseries.forecast.Forecast;
import com.github.signaflo.timeseries.model.Model;
import com.github.signaflo.timeseries.model.arima.Arima;
import com.github.signaflo.timeseries.model.arima.ArimaOrder;
public class MainFile {
}
`
The text was updated successfully, but these errors were encountered: