Last active
September 4, 2018 10:36
-
-
Save Manikant92/86a6ecbb8f2a94ab54a65ca95dcc7ad3 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
#predict by providing new input as -18 | |
print(lr.predict(-18)) | |
#output: [-198.] | |
#-18 * 11 = -198 | |
#predict with 89 as input | |
print(lr.predict(89)) | |
#output: [ 979.] | |
# 89 * 11 = 979 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment