0

我正在尝试使用以下代码:

require 'statsample'
include Statsample::Shorthand

n = 100
x = rnorm(n)
y = x + rnorm(n,0.5,0.2)
Statsample::Graph::Scatterplot.new(x,y)

我得到这样的输出:

#<Statsample::Graph::Scatterplot:0x00000003b7cac0 @v2_name=nil, @v1_name=nil, @v1=#<Daru::Vector(100)>
                   0 -0.8253230853299456
                   1  1.5602776553658153
                   2  1.7155337260438381
                   3  0.9898130381171576
                   4 0.17150928493368836

但没有图示https://github.com/SciRuby/sciruby-notebooks/blob/master/Visualization/Scatterplot%20with%20statsample.ipynb

有人可以解释我犯了什么错误

4

1 回答 1

0

在您链接到的示例中,有一些 javascript 代码似乎使用https://github.com/domitry/Nyaplotjs来绘制图形。

ruby 代码只是为您提供散点图的坐标数据,它实际上并没有绘制任何东西。

于 2017-04-13T08:35:25.523 回答