daru-view
daru-view copied to clipboard
daru-view is for easy and interactive plotting in web application & IRuby notebook. daru-view is a plugin gem to the existing daru gem.
[Toolbar](https://developers.google.com/chart/interactive/docs/gallery/toolbar) enables the user to export the underlying data into a CSV file or an HTML table. This works only when the data is given as the URL of the...
Exporting in web frameworks is completely offline. In IRuby notebook, offline-export supports only the exporting to png, jpeg and SVG format. Export to PDF is not working (not even through...
`IRuby.html` method was not working in `Daru` module as `Daru` already has a [module IRuby](https://github.com/SciRuby/daru/blob/7e7008e938f236ba55905560015683e1fde7d971/lib/daru/iruby/helpers.rb#L3) in it. So, to make this work, I have `include`d IRuby::Utils module at the top...
There are many examples present in [IRuby notebook](http://nbviewer.jupyter.org/github/sciruby/daru-view/tree/master/spec/dummy_iruby/) and [web app](https://github.com/Shekharrajak/demo_daru-view) and [here](https://github.com/Shekharrajak/daru_examples_io_view_rails). We must have some interesting examples in README as well.
Need to change https://shekharrajak.github.io/daru-view/ to https://sciruby.github.io/daru-view/
Before Daru wasn't included: ```ruby lokeshh:~/workspace/daru_rails (master) $ rails s -b $IP -p $PORT RubyDep: WARNING: Your Ruby is outdated/buggy. RubyDep: WARNING: Your Ruby is: 2.3.0 (buggy). Recommendation: upgrade to...
In main LazyHighCharts gem the html code generated using `high_charts` method contains [`var onload = window.onload;`](https://github.com/michelson/lazy_high_charts/blob/master/lib/lazy_high_charts/layout_helper.rb#L120) , So this script can't show charts in iruby. I have removed onload var...
[google Datatable ](https://developers.google.com/chart/interactive/docs/reference#development-tip)have lots of features . But in [google_visualr](https://github.com/winston/google_visualr) all the methods are not defined. May be google charts is updated or added new methods/features. (Also google_visualr is not...
When we try to plot chart using html table generated from daru DataFrame or Vector, it works fine for web apps but it is not working in iruby notebook. Refer...
Integrating daru-io Exporters manually each time with `respond_to` blocks in the controller of the Rails app has been done in https://github.com/athityakumar/daru-io/pull/40. However, I think it'd be better for users to...