Bokeh and reStructuredText ?

Hi.
Does someone have any experience of publishing visualisations incorporating blocks of reStructuredText to BokehServer ? Idea was to be able to publish “documents” similar to IPython (no interest on code blocks here)…

I understand I can generate html/scripts for the charts, but would like to leverage the publishing side of BokehServer too. Any suggestions where to start ?

cheers

Ricardo,

I am not sure I fully understand what you are asking for. Can you describe the use-case a little more?

Thanks,

Bryan

···

On Dec 5, 2014, at 2:24 PM, Ricardo <[email protected]> wrote:

Hi.
Does someone have any experience of publishing visualisations incorporating blocks of reStructuredText to BokehServer ? Idea was to be able to publish "documents" similar to IPython (no interest on code blocks here)..
I understand I can generate html/scripts for the charts, but would like to leverage the publishing side of BokehServer too. Any suggestions where to start ?

cheers

--
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/9a3de049-1a2b-484c-8423-605129c4a6ec%40continuum.io\.
For more options, visit https://groups.google.com/a/continuum.io/d/optout\.

The application I’m working on, executes an agent simulation of a particular scenario and at the end I would “publish” the simulation results into bokeh server for archival and analysis. A number of these results will be summarized by the nice charts of bokeh, but would I would like to make this report to be be more “document” like. Take for instance the example glyphs.py, assuming I would like also to publish “explanations” of the charts. something like:

output_server(“glyphs”)

rstParagraph(“”"

The following chart shows:

  • line 1

  • line 2

“”")

annular_wedge(x, y, 10, 20, 0.6, 4.1,

inner_radius_units=“screen”, outer_radius_units = “screen”,

color=“#8888ee”, tools=“pan,wheel_zoom,box_zoom,reset,previewsave”, title=“annular_wedge”)

rstParagraph(“”"

The following chart shows:

  • line 3

  • line 4

“”")

show()

···

On Friday, 5 December 2014 21:28:35 UTC+1, Bryan Van de ven wrote:

Ricardo,

I am not sure I fully understand what you are asking for. Can you describe the use-case a little more?

Thanks,

Bryan

On Dec 5, 2014, at 2:24 PM, Ricardo [email protected] wrote:

Hi.

Does someone have any experience of publishing visualisations incorporating blocks of reStructuredText to BokehServer ? Idea was to be able to publish “documents” similar to IPython (no interest on code blocks here)…

I understand I can generate html/scripts for the charts, but would like to leverage the publishing side of BokehServer too. Any suggestions where to start ?

cheers


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/9a3de049-1a2b-484c-8423-605129c4a6ec%40continuum.io.

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

Wow, that's an interesting application I admit I had not considered. Can you make a discussion issue on GH for this? I think we might be able to get more folks involved there. I am sure there are ways the current server could be (ab)used to do something like this but maybe there is something more purposeful that could be put on the roadmap.

Bryan

···

On Dec 5, 2014, at 2:45 PM, Ricardo <[email protected]> wrote:

The application I'm working on, executes an agent simulation of a particular scenario and at the end I would "publish" the simulation results into bokeh server for archival and analysis. A number of these results will be summarized by the nice charts of bokeh, but would I would like to make this report to be be more "document" like. Take for instance the example glyphs.py, assuming I would like also to publish "explanations" of the charts. something like:

output_server("glyphs")

rstParagraph("""
The following chart shows:
      * line 1
      * line 2
""")

annular_wedge(x, y, 10, 20, 0.6, 4.1,
              inner_radius_units="screen", outer_radius_units = "screen",
              color="#8888ee", tools="pan,wheel_zoom,box_zoom,reset,previewsave", title="annular_wedge")

rstParagraph("""
The following chart shows:
      * line 3
      * line 4
""")

show()

On Friday, 5 December 2014 21:28:35 UTC+1, Bryan Van de ven wrote:
Ricardo,

I am not sure I fully understand what you are asking for. Can you describe the use-case a little more?

Thanks,

Bryan

> On Dec 5, 2014, at 2:24 PM, Ricardo <[email protected]> wrote:
>
> Hi.
> Does someone have any experience of publishing visualisations incorporating blocks of reStructuredText to BokehServer ? Idea was to be able to publish "documents" similar to IPython (no interest on code blocks here)..
> I understand I can generate html/scripts for the charts, but would like to leverage the publishing side of BokehServer too. Any suggestions where to start ?
>
> cheers
>
> --
> 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 bokeh+un...@continuum.io.
> To post to this group, send email to bo...@continuum.io.
> To view this discussion on the web visit https://groups.google.com/a/continuum.io/d/msgid/bokeh/9a3de049-1a2b-484c-8423-605129c4a6ec%40continuum.io\.
> For more options, visit https://groups.google.com/a/continuum.io/d/optout\.

--
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/4f037d06-cf45-4456-a3cb-f2e0782fdc20%40continuum.io\.
For more options, visit https://groups.google.com/a/continuum.io/d/optout\.

Not only will do, but make myself available to help :slight_smile:

Thanks

···

On Fri Dec 05 2014 at 9:50:19 PM Bryan Van de Ven [email protected] wrote:

Wow, that’s an interesting application I admit I had not considered. Can you make a discussion issue on GH for this? I think we might be able to get more folks involved there. I am sure there are ways the current server could be (ab)used to do something like this but maybe there is something more purposeful that could be put on the roadmap.

Bryan

On Dec 5, 2014, at 2:45 PM, Ricardo [email protected] wrote:

The application I’m working on, executes an agent simulation of a particular scenario and at the end I would “publish” the simulation results into bokeh server for archival and analysis. A number of these results will be summarized by the nice charts of bokeh, but would I would like to make this report to be be more “document” like. Take for instance the example glyphs.py, assuming I would like also to publish “explanations” of the charts. something like:

output_server(“glyphs”)

rstParagraph(“”"

The following chart shows:

  * line 1
  * line 2

“”")

annular_wedge(x, y, 10, 20, 0.6, 4.1,

          inner_radius_units="screen", outer_radius_units = "screen",
          color="#8888ee", tools="pan,wheel_zoom,box_zoom,reset,previewsave", title="annular_wedge")

rstParagraph(“”"

The following chart shows:

  * line 3
  * line 4

“”")

show()

On Friday, 5 December 2014 21:28:35 UTC+1, Bryan Van de ven wrote:

Ricardo,

I am not sure I fully understand what you are asking for. Can you describe the use-case a little more?

Thanks,

Bryan

On Dec 5, 2014, at 2:24 PM, Ricardo [email protected] wrote:

Hi.

Does someone have any experience of publishing visualisations incorporating blocks of reStructuredText to BokehServer ? Idea was to be able to publish “documents” similar to IPython (no interest on code blocks here)…

I understand I can generate html/scripts for the charts, but would like to leverage the publishing side of BokehServer too. Any suggestions where to start ?

cheers

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/9a3de049-1a2b-484c-8423-605129c4a6ec%40continuum.io.

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

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/4f037d06-cf45-4456-a3cb-f2e0782fdc20%40continuum.io.

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

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/ED3336C1-AEF6-4066-9C2A-6EE4D75DC6E7%40continuum.io.

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