python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Erlang: ets table does not persist data after gen_server crashes and restarts
I have a gen_server which stores positions of objects in an ets table like this
-module(my_gen_server).
-record(slot, {position, object}).
-behavior(gen_server).
%% API
-export([start_link/1, init/1,...
scottstots
Votes: 0
Answers: 1
How to forecast continuous in R
I'm novice in R and im doing a forecast for my dataset, as you can see in the diagram, the data before 2019,04 is training data, the part in blue (start from 2019,04- 2019,12) is my forecast and the r...
J Xu
Votes: 0
Answers: 1
Automatic ETS from fable package in R does not provide the model with the lowest Information Criteria (AIC, BIC and AICc)
Using the classic shampoo dataset from fpp2 I tried to fit an automatic ets model. This led me to an ETS(A,A,N) framework with aic = 441.0668, bic = 448.9844 and AICc = 443.0668. Nevertheless when usi...
Andre Gutierrez
Votes: 0
Answers: 1