在 Gadfly 中绘制图层列表

Plotting list of layers in Gadfly

我有一个未知大小的 Gadfly 层列表:

lines = [layer(x=x,y=i*x) for i in range(1,stop=3)]

现在我想把它们全部画在一个图中。但 Gadfly 需要多个单层,而不是层列表。所以 plot(lines) 不起作用,但 plot(lines[1], lines[2], lines[3]) 起作用。

在 Python 中,我只使用 splat 运算符 plot(*lines)

如何在 Julia 中做这样的事情?

尝试用 ...

拼写
plot(lines...)