Im want replicate this code of Kaggle but don't run in Visual Studio Code. Im want run in VSC
https://www.kaggle.com/code/alexisbcook/hello-seaborn
How solve this error.
Im want replicate this code of Kaggle but don't run in Visual Studio Code. Im want run in VSC
https://www.kaggle.com/code/alexisbcook/hello-seaborn
How solve this error.
Hi Miguel :) Remove the %matplotlib inline. Your code should look like:
import pandas as pd
import matplotlib.pyplot as plt
import seaborn as sns
pd.plotting.register_matplotlib_converters()
print('setup complete')
Hope it helps! :)