我正在尝试显示多个图表,每个图表都有两个子图,具有水平布局,在 iRuby 的一个输出中,在 google Colaboratory 上运行。
我第一次使用Nyaplot
,但它不起作用。我不知道为什么,但它根本没有给我任何回应。
这是我检查它是否有效的来源:
require 'nyaplot'
plot = Nyaplot::Plot.new
plot.add(:bar, ['Persian', 'Maine Coon', 'American Shorthair'], [10,20,30])
plot.x_label("Species")
plot.y_label("Number")
p = Nyaplot::Frame.new
p.add(plot)
p.show
这是输出:
#<CZTop::Socket::PUB:0x5609e3406f80 last_endpoint="tcp://127.0.0.1:42375">
仅此而已。
所以我改为Matplotlib :: Pyplot
,它工作正常。(除了当我尝试使用子图时它太慢了。)但是当我尝试在一个单元格中显示多个图形时,每个输出都被合并了,所以我不能使用它。
测试了这个示例代码:
def a
plt = Matplotlib::pyplot
xs = [*1..100]
ys = xs.map {|x| Math.sin(Math::PI * x / 20.0) + 0.1 * (rand - 0.5) }
ys2 = xs.map {|x| Math.cos(Math::PI * x / 20.0) + 0.1 * (rand - 0.5) }
plt.subplot(2,1,1)
plt.plot(xs, ys, "r", label: "Hello")
plt.title("a")
plt.plot(xs, ys2, "b", label: "GoodBye")
plt.legend
plt.subplot(2,1,2)
plt.plot(ys, xs, "r", label: "hello?")
plt.plot(ys2, xs, "b", label: "goodbye?")
plt.title("b")
plt.legend
plt.show
end
a()
a()
a()
并得到了这张图片
所以我改为daru-view
,但它不能在一个输出中显示多个图形,只需调用show_in_iruby
不止一次。此外,我需要 matplotlib 中的子图之类的东西,但我找不到一些水平布局的东西。
使用此代码:
Daru::View.plotting_library = :googlecharts
idx = Daru::Index.new ['a', 'b', 'c']
df_1 = Daru::DataFrame.new([[1,2,3], [1,2,3], [1,3,5]])
df_1.vectors = idx
idx2 = Daru::Index.new ['a', 'b', 'c']
df_2 = Daru::DataFrame.new([[1,2,3], [1,2,3], [1,2,3]])
df_2.vectors = idx2
options = {title: "name", colors: ["red", "blue"]}
plt1 = Daru::View::Plot.new(df_1, options)
plt2 = Daru::View::Plot.new(df_2, options)
plt1.show_in_iruby
plt2.show_in_iruby
得到这样的图像
我应该怎么做才能在一个输出中显示多个图形?