How load libraries in Python use VSC

Viewed 13
1 Answers

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! :)

Related