<Kaggle-Course>

캐글​ data_visualization/02-line-charts

9566 2023. 3. 17. 16:47
728x90
from pandas.plotting import register_matplotlib_converters
register_matplotlib_converters()
​
# Set the width and height of the figure
plt.figure(figsize=(16,6))
​
# Line chart showing how FIFA rankings evolved over time
sns.lineplot(data=fifa_data)​
728x90