Created
August 11, 2022 06:10
-
-
Save charanhu/4709d0befec348eb3fd21117311242ec 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
X = insurance_dataset.drop(columns='charges', axis=1) | |
Y = insurance_dataset['charges'] | |
X_train, X_test, Y_train, Y_test=train_test_split(X, Y, test_size=0.2, random_state=2) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment