有没有办法为每个数据集着色?

有一个使用 DataFrames 的解决方案,但是没有它们的情况呢?

我试过这个,但没有效果:

using Gadfly

plot(
  layer(x=1:10, y=1:10, Stat.step, Geom.line),
  layer(x=1:10, y=2:11, Stat.step, Geom.line),
  color=["red", "green"]
)

最佳答案

绘图不应该如此痛苦。以下是使用 Gadfly 后端在 Plots 中执行此操作的方法:

using Plots; gadfly(size=(400,300))
plot(rand(10,2), line = ([:red :green], :step))

julia - 使用 Gadfly 为单条线着色-LMLPHP

关于julia - 使用 Gadfly 为单条线着色,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/35832408/

10-10 14:34