Errors while rendering bokeh widgets

Hi:

I am using bokeh 0.10.0. All works fine on Ubuntu. But on linux mint I see the following errors. Does anyone know what the issue is? I currently don’t know what part of my bokeh code is throwing this error.

ERROR : W-1001 (NO_GLYPH_RENDERERS): Plot has no glyph renderers: Figure, ViewModel:Plot, ref _id: 5437d01c-dac4-4e2c-9cf4-de17e29ac09f

ERROR : E-1000 (COLUMN_LENGTHS): ColumnDataSource column lengths are not all the same: ColumnDataSource, ViewModel:ColumnDataSource, ref _id: 0df1d06f-6f95-459a-95fe-35735d11b83a

Thanks

Yamuna

It’s impossible to speculate without some example code.

Thanks,

Bryan

···

On Jun 17, 2016, at 16:15, [email protected] wrote:

Hi:

I am using bokeh 0.10.0. All works fine on Ubuntu. But on linux mint I see the following errors. Does anyone know what the issue is? I currently don’t know what part of my bokeh code is throwing this error.

ERROR : W-1001 (NO_GLYPH_RENDERERS): Plot has no glyph renderers: Figure, ViewModel:Plot, ref _id: 5437d01c-dac4-4e2c-9cf4-de17e29ac09f

ERROR : E-1000 (COLUMN_LENGTHS): ColumnDataSource column lengths are not all the same: ColumnDataSource, ViewModel:ColumnDataSource, ref _id: 0df1d06f-6f95-459a-95fe-35735d11b83a

Thanks

Yamuna

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/87d8114b-fab4-48fd-854b-8a8a8bcf8110%40continuum.io.

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

Hi Bryan:

I understand. It is just that the code is integrated in a much bigger software. The bokeh code throwing this error was incidentally written by Luke Canavan from Continuum. I have already informed him of this error. Maybe he can run the software and show you the error. I can ask him to get in touch with you if he needs help resolving it. I was just hoping that it was a known error with a known resolution. I guess not.

Thanks

Yamuna

···

On Friday, June 17, 2016 at 5:19:35 PM UTC-4, Bryan Van de ven wrote:

It’s impossible to speculate without some example code.

Thanks,

Bryan

On Jun 17, 2016, at 16:15, [email protected] wrote:

Hi:

I am using bokeh 0.10.0. All works fine on Ubuntu. But on linux mint I see the following errors. Does anyone know what the issue is? I currently don’t know what part of my bokeh code is throwing this error.

ERROR : W-1001 (NO_GLYPH_RENDERERS): Plot has no glyph renderers: Figure, ViewModel:Plot, ref _id: 5437d01c-dac4-4e2c-9cf4-de17e29ac09f

ERROR : E-1000 (COLUMN_LENGTHS): ColumnDataSource column lengths are not all the same: ColumnDataSource, ViewModel:ColumnDataSource, ref _id: 0df1d06f-6f95-459a-95fe-35735d11b83a

Thanks

Yamuna

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/87d8114b-fab4-48fd-854b-8a8a8bcf8110%40continuum.io.

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

Hi Bryan:

I understand. It is just that the code is integrated in a much bigger software. The bokeh code throwing this error was incidentally written by Luke Canavan from Continuum. I have already informed him of this error. Maybe he can run the software and show you the error. I can ask him to get in touch with you if he needs help resolving it. I was just hoping that it was a known error with a known resolution. I guess not.

Thanks

Yamuna

It’s impossible to speculate without some example code.

Thanks,

Bryan

Hi:

I am using bokeh 0.10.0. All works fine on Ubuntu. But on linux mint I see the following errors. Does anyone know what the issue is? I currently don’t know what part of my bokeh code is throwing this error.

ERROR : W-1001 (NO_GLYPH_RENDERERS): Plot has no glyph renderers: Figure, ViewModel:Plot, ref _id: 5437d01c-dac4-4e2c-9cf4-de17e29ac09f

ERROR : E-1000 (COLUMN_LENGTHS): ColumnDataSource column lengths are not all the same: ColumnDataSource, ViewModel:ColumnDataSource, ref _id: 0df1d06f-6f95-459a-95fe-35735d11b83a

Thanks

Yamuna

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/87d8114b-fab4-48fd-854b-8a8a8bcf8110%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/6a204091-1360-464b-adac-0764c6733727%40continuum.io.

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

···

On Jun 17, 2016, at 16:29, yamsk [email protected] wrote:

On Friday, June 17, 2016 at 5:19:35 PM UTC-4, Bryan Van de ven wrote:

On Jun 17, 2016, at 16:15, [email protected] wrote:

Hi Yamuna,

The messages are general conditions that can indicate something is not right, there's lots of ways they might be encountered, which is why it's not really possible to say much without specifics. The first one is saying you have a plot with not glyphs added. This is normally no desired, hence the warning. But there are a few cases, like if you just wanted a gmap plot with just the plot, so it's not an ouright error. The second says that you have a column data source with columns that have equal lengths. This violates the assumption of column data sources and can lead to unpredictable or wrong results. All the columns in a given column data source have to have the same length. Given that information I'd suggest some "printf debugging" to examine the lengths of your data source columns.

Bryan

···

On Jun 17, 2016, at 4:58 PM, Bryan Van de Ven <[email protected]> wrote:

On Jun 17, 2016, at 16:29, yamsk <[email protected]> wrote:

Hi Bryan:

I understand. It is just that the code is integrated in a much bigger software. The bokeh code throwing this error was incidentally written by Luke Canavan from Continuum. I have already informed him of this error. Maybe he can run the software and show you the error. I can ask him to get in touch with you if he needs help resolving it. I was just hoping that it was a known error with a known resolution. I guess not.

Thanks
Yamuna

On Friday, June 17, 2016 at 5:19:35 PM UTC-4, Bryan Van de ven wrote:
It's impossible to speculate without some example code.

Thanks,

Bryan

On Jun 17, 2016, at 16:15, yam...@gmail.com wrote:

Hi:

I am using bokeh 0.10.0. All works fine on Ubuntu. But on linux mint I see the following errors. Does anyone know what the issue is? I currently don't know what part of my bokeh code is throwing this error.

ERROR : W-1001 (NO_GLYPH_RENDERERS): Plot has no glyph renderers: Figure, ViewModel:Plot, ref _id: 5437d01c-dac4-4e2c-9cf4-de17e29ac09f

ERROR : E-1000 (COLUMN_LENGTHS): ColumnDataSource column lengths are not all the same: ColumnDataSource, ViewModel:ColumnDataSource, ref _id: 0df1d06f-6f95-459a-95fe-35735d11b83a

Thanks
Yamuna

--
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/87d8114b-fab4-48fd-854b-8a8a8bcf8110%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/6a204091-1360-464b-adac-0764c6733727%40continuum.io\.
For more options, visit https://groups.google.com/a/continuum.io/d/optout\.