twosigma / beakerx

Beaker Extensions for Jupyter Notebook
http://BeakerX.com
Apache License 2.0
2.79k stars 382 forks source link

Incomplete plot #8244

Open psaigal95 opened 4 years ago

psaigal95 commented 4 years ago

x_data = kbos.index.to_series() len(x_data) 914197 type(x_data) pandas.core.series.Series

y_data = kbos['base_px'] len(y_data) 914197 type(y_data) pandas.core.series.Series

time_plot_2 = TimePlot() time_plot_2.add(Line(x=x_data, y=y_data))

When I plot this, I see the graph plotted but incomplete or for a very short duration. Can you please tell me if I am doing something wrong? Feel free to let me know if you need more information.

Thanks.

psaigal95 commented 4 years ago

I checked the console logs as well - they are none.

psaigal95 commented 4 years ago

Was anyone able to check this ?

psaigal95 commented 4 years ago

@scottdraves Do we have a limit on the number of datapoints somewhere? I am trying to plot 1 million datapoints but I don;t see the graph completely - it gets plot but certainly not for 1 million datapoints. There are no console logs as well. Can you please help me out here?

psaigal95 commented 4 years ago

@LeeTZ @jaroslawmalekcodete can you please check this? Sorry to bother you - have been stuck on this one for quite some time.

EfimovVladimir commented 4 years ago

8263