Syntax: How to plot a list of figures in hplot / vplot ...

Hello,

Is there a way, to plot a whole list of figures?
I have to specify every single figure to get a nice hplot

p =

for i in range(20):

p = figure(x_range=[0, size], y_range=[0, size] …)
p.image(image=[array[::-1]], x=[0], y=[0] …)
pics.append(p)

This works

p = hplot(pics[0], pics[1], … )

This doesn´t work

p = hplot(pics)

# This doesn't work ether `` p = hplot(pics) show(p)

``

greets
kju

``

``Try this:

p = hplot(*pics)

``Miguel

···

Le jeudi 6 août 2015 01:19:13 UTC+2, kju factor a écrit :

Hello,

Is there a way, to plot a whole list of figures?
I have to specify every single figure to get a nice hplot

p =

for i in range(20):

p = figure(x_range=[0, size], y_range=[0, size] …)
p.image(image=[array[::-1]], x=[0], y=[0] …)
pics.append(p)

This works

p = hplot(pics[0], pics[1], … )

This doesn´t work

p = hplot(pics)

# This doesn't work ether `` p = hplot(pics) show(p)

``

greets
kju

``