GithubHelp home page GithubHelp logo

How does date plotting work? about bokeh HOT 3 CLOSED

bokeh avatar bokeh commented on May 2, 2024
How does date plotting work?

from bokeh.

Comments (3)

pzwang avatar pzwang commented on May 2, 2024

I think the fundamental problem is that pandas.date_range gives you back a DatetimeIndex object. I'm trying to see now how best to convert it to something that we can serialize and plot...

from bokeh.

pzwang avatar pzwang commented on May 2, 2024

An update: the following code works better and displays a plot, but the grid lines and axes are still off and not rendering right.

from bokeh import mpl
import numpy as np
import pandas as pd
p = mpl.PlotClient()
p.notebooksources()
pd_dates = pd.date_range('2012-01-02', '2012-01-05', freq='H')
dates = pd_dates.astype(int) / 1000000
values = np.arange(len(dates))
plot = p.plot(x=dates, y=values, color='orange', width=700, is_x_date=True, )
plot.notebook()

(Bokeh currently doesn't know how to serialize a Pandas DatetimeIndex object, so we have to convert to a Numpy integer array.)

from bokeh.

hhuuggoo avatar hhuuggoo commented on May 2, 2024

I think the grid lines issues are fixed so I'm closing this out we should do a better job of handling datetimes on the python side, maybe auto convert to millis?

from bokeh.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.