python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
How to do Exponential smoothing using FPP3 in daily data that has holidays
I have the data on closing stock prices. This data will have gaps on weekends and also holidays when the market is closed. How do I run single, double and triple exponential smoothing using fpp3 on th...
Piyush Shah
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
How to reshape Data for LSTM Time Series Prediction?
values = lstm_df_w.values
n_train_weeks = len(train_set_weekly_multi)
train = values[:n_train_weeks]
test = values[n_train_weeks:,:]
# split into input and outputs
train_X, train_y = train[:, :-1], tr...
Mannheimer_Coder
Votes: 0
Answers: 0
Struggling to change y-axis in Monte Carlo from number of occurrences to percents
I am trying to change my Y-Axis on a histogram I have created for a Monte Carlo Simulation. The Y-Axis is currently outputting number of occurrences opposed to percents. I have my code below and I am ...
matthewg0805
Votes: 0
Answers: 1