Pandas-highcharts Does Not Draw Graphs

Asked 1 years ago, Updated 1 years ago, 91 views

What do you want to do

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.

Source Codes Affected

 from pandas_highcharts.display import display_charts
df = ...# Now we've created data of type DateFrame type data.
display_charts(df,chart_type='stock')

Tried

It didn't work when I changed the browser on the notebook.
I couldn't find out much about pandas-highcharts.

Supplementary information (for example, FW/Tool Version)

notebook==6.0.3
pandas==0.24.2
pandas-highcharts==0.5.2

python pandas jupyter-notebook highcharts

2022-09-30 21:47

1 Answers

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.


2022-09-30 21:47

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.