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
Xs = [ data.iloc[i][var] for var in self.features ]
features are mentioned as ["EMA","SSO"] # i assume we need to map them to X1, X2.
iloc takes indexes as integers, it will not work as i.e; data.iloc[0]["EMA"] .
The text was updated successfully, but these errors were encountered:
in Engine.start for below code:
Xs = [ data.iloc[i][var] for var in self.features ]
features are mentioned as ["EMA","SSO"] # i assume we need to map them to X1, X2.
iloc takes indexes as integers, it will not work as i.e; data.iloc[0]["EMA"] .
The text was updated successfully, but these errors were encountered: