why is this happening please? date and the two other columns ( [‘iv_pctile’,‘h_l_25’] ) have the same number of rows so what am I doing wrong?
the code
h_l_25_chart = px.line(df_line_plot, x= 'date', y= ['iv_pctile','h_l_25'], color ='symbol')
the error
ValueError: All arguments should have the same length. The length of argument `y` is 2, whereas the length of previous arguments ['date'] is 92
``