-
Notifications
You must be signed in to change notification settings - Fork 140
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
DataFrame#plot and Vector#plot not working #482
Comments
I don't think it is removed from the daru. It looks different issue. I am able to run these lines using latest code. |
@Shekharrajak Ok, but these lines are certainly not working in latest daru release. NoMethodError: undefined method `plot' for "#<Daru::Vector(3)>\n 0 1\n 1 2\n 2 3"
from /var/lib/gems/2.3.0/gems/daru-0.2.1/lib/daru/vector.rb:1420:in `method_missing'
from (irb):4
from /usr/bin/irb:11:in `<main>' |
@Shekharrajak Also I'm getting error (the same I mentioned on top) on latest code. You might want to test on a new computer with only latest |
Yes! I already tried the latest cloned version :
I'll check 0.2.1 |
@Shekharrajak You are right, |
Thanks for the update. Actually, I tried in 0.2.1 version also it was fine. |
I think a new Daru release is needed as with the last release the Following lines give me require 'gnuplotrb'
require 'daru'
include GnuplotRB
dv = Daru::Vector.new [:a, :a, :a, :b, :b], type: :category
Plot.new [dv.frequencies, with: 'histogram'], xrange: -1..2, yrange: 0..10 |
@lokeshh , I installed |
Ok thanks. |
Hi, |
@NicolasNeiman You need to install |
@homonecloco I'm using daru 0.3 and plotting with gruff is working for me. I just had to add that gem using |
result in following error:
If looks to me the support for plotting in Daru has been removed or long been broken because Daru latest release gives the error that
DataFrame#plot
is not found. If the support for plotting has been removed (because its shifted todaru-view
) we need to remove the appropriate notebooks from README andsciruby-notebooks
.The text was updated successfully, but these errors were encountered: