bokeh 7.0 histogram.... i have not many plot in one tab

before i write many plot in one tab

but in 7.0, i have not many plot in one tab

hold() function does not operate

refer to the below image (bokeh 6.0 quad plot)

Hi,

The plotting api was recently changed as of version 0.7. Some old functions (for instance, hold) are now deprecated but [should] still function. See the documentation for some more details… http://bokeh.pydata.org/docs/user_guide/plotting.html

Can you provide a simple code example that was working on 0.6 but is not working with 0.7 release?

Thank you

···

On Wed, Dec 10, 2014 at 3:22 PM, jun-seok bang [email protected] wrote:

before i write many plot in one tab

but in 7.0, i have not many plot in one tab

hold() function does not operate

refer to the below image (bokeh 6.0 quad plot)

You received this message because you are subscribed to the Google Groups “Bokeh Discussion - Public” group.

To unsubscribe from this group and stop receiving emails from it, send an email to [email protected].

To post to this group, send email to [email protected].

To view this discussion on the web visit https://groups.google.com/a/continuum.io/d/msgid/bokeh/be0d0986-9767-4a34-8a64-34d0002668f0%40continuum.io.

For more options, visit https://groups.google.com/a/continuum.io/d/optout.

Fabio Pliger

jus-seok,

We tried to ensure that all old code would work with this update, even if deprecated, however there may have been problems that slipped through. The "hold" function has been deprecated. To get multiple renderers on one plot, you should now do something like this:

p = figure(...)

# all of these will go on one plot, because we
# are calling methods on the one plot, p
p.circle(...)
p.triangle(...)
p.rect(...)

show(p)

···

On Dec 10, 2014, at 8:22 AM, jun-seok bang <[email protected]> wrote:

before i write many plot in one tab

but in 7.0, i have not many plot in one tab

hold() function does not operate

refer to the below image (bokeh 6.0 quad plot)

--
You received this message because you are subscribed to the Google Groups "Bokeh Discussion - Public" group.
To unsubscribe from this group and stop receiving emails from it, send an email to [email protected].
To post to this group, send email to [email protected].
To view this discussion on the web visit https://groups.google.com/a/continuum.io/d/msgid/bokeh/be0d0986-9767-4a34-8a64-34d0002668f0%40continuum.io\.
For more options, visit https://groups.google.com/a/continuum.io/d/optout\.