Created
October 6, 2021 04:28
-
-
Save SajidLhessani/7f9fc77e65a3c0ba5497a0d1d5076429 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Use drop method to drop the columns | |
X = df.drop(['Close', 'Signal', 'High', | |
'Low', 'Volume', 'Ret'], axis=1) | |
# Create a variable which contains all the 'Signal' values | |
y = df['Signal'] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment