Library that I used
import numpy as np
import pandas as pd
import seaborn as sns
import plotly.express as px
import matplotlib.pyplot as plt
Dataset https://i.stack.imgur.com/k4hIL.png
My Code
sound_features = ['acousticness', 'danceability', 'energy', 'instrumentalness', 'liveness', 'valence']
fig = px.line(year_data, x='year', y=sound_features)
fig.show()
My Output https://i.stack.imgur.com/iF529.png
Ideal Output https://i.stack.imgur.com/Fwsop.png