I'd like to draw a graph of the stock price data I got on the jupyter notebook using pandas-highcharts.When I tried it, I couldn't see any errors, let alone nothing.
from pandas_highcharts.display import display_charts
df = ...# Now we've created data of type DateFrame type data.
display_charts(df,chart_type='stock')
It didn't work when I changed the browser on the notebook.
I couldn't find out much about pandas-highcharts.
notebook==6.0.3
pandas==0.24.2
pandas-highcharts==0.5.2
Why don't you try JupiterLab?
It looks like an evolutionary version of the jupyter notebook.
It was the same for me, but I was able to solve it using JupiterLab.
Also, the data frame could not be displayed if the data was too large, so
Narrowing the data might be a good idea.
© 2024 OneMinuteCode. All rights reserved.