Skip to content

Instantly share code, notes, and snippets.

@kvnkho
Last active January 10, 2022 06:15
Show Gist options
  • Save kvnkho/e9fa87607cde3179c46bff8bf1681b3e to your computer and use it in GitHub Desktop.
Save kvnkho/e9fa87607cde3179c46bff8bf1681b3e to your computer and use it in GitHub Desktop.
Importing PyCaret
from pycaret.datasets import get_data
df = get_data("titanic")
@wogkszla
Copy link

wogkszla commented Jan 10, 2022

misspelled parameter.

AS-IS (Wrong)

df = get_data("titatic")

TO-BE (Right)

df = get_data("titanic")

thank you.

@kvnkho
Copy link
Author

kvnkho commented Jan 10, 2022

Thank you @wogkszla , I edited it. I asssume you got here from Medium. I'll try to edit that.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment