mdarray-sol 0.1.0-java
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/LICENSE.txt +35 -0
- data/LICENSE.txt~ +73 -0
- data/README.md +140 -0
- data/README.md~ +290 -0
- data/Rakefile +80 -0
- data/config.rb +223 -0
- data/doc/Nashorn.html +1406 -0
- data/doc/Sol.html +692 -0
- data/doc/Sol/BarChart.html +181 -0
- data/doc/Sol/BaseChart.html +799 -0
- data/doc/Sol/Bootstrap.html +1134 -0
- data/doc/Sol/Bridge.html +448 -0
- data/doc/Sol/Chart.html +1162 -0
- data/doc/Sol/CoordinateChart.html +673 -0
- data/doc/Sol/DCFX.html +807 -0
- data/doc/Sol/Dashboard.html +1967 -0
- data/doc/Sol/ExecMessages.html +332 -0
- data/doc/Sol/GuiCommunication.html +230 -0
- data/doc/Sol/Interval.html +1213 -0
- data/doc/Sol/JS.html +448 -0
- data/doc/Sol/LineChart.html +344 -0
- data/doc/Sol/LinearScale.html +334 -0
- data/doc/Sol/Margins.html +219 -0
- data/doc/Sol/OrdinalScale.html +263 -0
- data/doc/Sol/ReadBuffer.html +302 -0
- data/doc/Sol/Scale.html +462 -0
- data/doc/Sol/Stack.html +199 -0
- data/doc/Sol/TimeScale.html +396 -0
- data/doc/_index.html +362 -0
- data/doc/class_list.html +58 -0
- data/doc/css/common.css +1 -0
- data/doc/css/full_list.css +57 -0
- data/doc/css/style.css +339 -0
- data/doc/file.README.html +95 -0
- data/doc/file_list.html +60 -0
- data/doc/frames.html +26 -0
- data/doc/index.html +95 -0
- data/doc/js/app.js +219 -0
- data/doc/js/full_list.js +181 -0
- data/doc/js/jquery.js +4 -0
- data/doc/method_list.html +849 -0
- data/doc/top-level-namespace.html +135 -0
- data/examples/bar_chart/bar_chart.rb +268 -0
- data/examples/bar_plot.rb +96 -0
- data/examples/charts/area.rb +25 -0
- data/examples/charts/area_script.rb +69 -0
- data/examples/charts/env.rb +8 -0
- data/examples/charts/monthly-move.csv +6725 -0
- data/examples/charts/morley.csv +101 -0
- data/examples/charts/morley2.csv +81 -0
- data/examples/charts/morley3.csv +121 -0
- data/examples/d3_tutorial.rb +98 -0
- data/examples/sc_plot.rb +57 -0
- data/examples/scatterplot/axes.rb +111 -0
- data/examples/scatterplot/scatterplot.rb +221 -0
- data/examples/us_states/map.rb +90 -0
- data/examples/us_states/us-ag-productivity2004.csv +49 -0
- data/examples/us_states/us-cities.csv +51 -0
- data/examples/util/linear_scale.rb +83 -0
- data/examples/util/ordinal_scale.rb +72 -0
- data/init.rb +39 -0
- data/lib/jx/array_handler.js +70 -0
- data/lib/jx/callback.rb +255 -0
- data/lib/jx/hash_handler.js +87 -0
- data/lib/jx/irbobject.rb +121 -0
- data/lib/jx/js.rb +442 -0
- data/lib/jx/js_array.rb +31 -0
- data/lib/jx/js_hash.rb +76 -0
- data/lib/jx/js_init.rb +62 -0
- data/lib/jx/jsarray.rb +66 -0
- data/lib/jx/jsfunction.rb +73 -0
- data/lib/jx/jsobject.rb +188 -0
- data/lib/jx/jsstyle_sheet.rb +231 -0
- data/lib/jx/jsundefined.rb +46 -0
- data/lib/jx/proxy_array.rb +62 -0
- data/lib/jx/rbobject.rb +80 -0
- data/lib/jx/ruby_proxy.js +176 -0
- data/lib/jx/ruby_rich.js +70 -0
- data/lib/jx/sol.rb +109 -0
- data/lib/mdarray-sol.rb +34 -0
- data/lib/mdarray/jsmdarray.rb +39 -0
- data/lib/ruby_rich/bootstrap.rb +230 -0
- data/lib/ruby_rich/config.html +22 -0
- data/lib/ruby_rich/dashboard.rb +299 -0
- data/lib/ruby_rich/ruby_rich.rb +120 -0
- data/lib/sol/bar_chart.rb +35 -0
- data/lib/sol/base_chart.rb +148 -0
- data/lib/sol/chart.rb +138 -0
- data/lib/sol/coordinate_chart.rb +128 -0
- data/lib/sol/interval.rb +156 -0
- data/lib/sol/line_chart.rb +58 -0
- data/lib/sol/margins.rb +52 -0
- data/lib/sol/scale.rb +212 -0
- data/lib/sol/stack.rb +44 -0
- data/node_modules/bootstrap/Gruntfile.js +533 -0
- data/node_modules/bootstrap/dist/js/bootstrap.js +2363 -0
- data/node_modules/bootstrap/dist/js/bootstrap.min.js +7 -0
- data/node_modules/bootstrap/dist/js/npm.js +13 -0
- data/node_modules/bootstrap/grunt/bs-commonjs-generator.js +30 -0
- data/node_modules/bootstrap/grunt/bs-glyphicons-data-generator.js +42 -0
- data/node_modules/bootstrap/grunt/bs-lessdoc-parser.js +237 -0
- data/node_modules/bootstrap/grunt/bs-raw-files-generator.js +44 -0
- data/node_modules/bootstrap/js/affix.js +162 -0
- data/node_modules/bootstrap/js/alert.js +94 -0
- data/node_modules/bootstrap/js/button.js +120 -0
- data/node_modules/bootstrap/js/carousel.js +237 -0
- data/node_modules/bootstrap/js/collapse.js +211 -0
- data/node_modules/bootstrap/js/dropdown.js +165 -0
- data/node_modules/bootstrap/js/modal.js +337 -0
- data/node_modules/bootstrap/js/popover.js +108 -0
- data/node_modules/bootstrap/js/scrollspy.js +172 -0
- data/node_modules/bootstrap/js/tab.js +155 -0
- data/node_modules/bootstrap/js/tooltip.js +514 -0
- data/node_modules/bootstrap/js/transition.js +59 -0
- data/node_modules/chai/chai.js +6142 -0
- data/node_modules/chai/index.js +1 -0
- data/node_modules/chai/karma.conf.js +28 -0
- data/node_modules/chai/karma.sauce.js +41 -0
- data/node_modules/chai/lib/chai.js +93 -0
- data/node_modules/chai/lib/chai/assertion.js +131 -0
- data/node_modules/chai/lib/chai/config.js +55 -0
- data/node_modules/chai/lib/chai/core/assertions.js +1860 -0
- data/node_modules/chai/lib/chai/interface/assert.js +1645 -0
- data/node_modules/chai/lib/chai/interface/expect.js +34 -0
- data/node_modules/chai/lib/chai/interface/should.js +201 -0
- data/node_modules/chai/lib/chai/utils/addChainableMethod.js +112 -0
- data/node_modules/chai/lib/chai/utils/addMethod.js +44 -0
- data/node_modules/chai/lib/chai/utils/addProperty.js +48 -0
- data/node_modules/chai/lib/chai/utils/expectTypes.js +42 -0
- data/node_modules/chai/lib/chai/utils/flag.js +33 -0
- data/node_modules/chai/lib/chai/utils/getActual.js +20 -0
- data/node_modules/chai/lib/chai/utils/getEnumerableProperties.js +26 -0
- data/node_modules/chai/lib/chai/utils/getMessage.js +51 -0
- data/node_modules/chai/lib/chai/utils/getName.js +22 -0
- data/node_modules/chai/lib/chai/utils/getPathInfo.js +111 -0
- data/node_modules/chai/lib/chai/utils/getPathValue.js +43 -0
- data/node_modules/chai/lib/chai/utils/getProperties.js +36 -0
- data/node_modules/chai/lib/chai/utils/hasProperty.js +64 -0
- data/node_modules/chai/lib/chai/utils/index.js +130 -0
- data/node_modules/chai/lib/chai/utils/inspect.js +335 -0
- data/node_modules/chai/lib/chai/utils/objDisplay.js +50 -0
- data/node_modules/chai/lib/chai/utils/overwriteChainableMethod.js +54 -0
- data/node_modules/chai/lib/chai/utils/overwriteMethod.js +52 -0
- data/node_modules/chai/lib/chai/utils/overwriteProperty.js +55 -0
- data/node_modules/chai/lib/chai/utils/test.js +28 -0
- data/node_modules/chai/lib/chai/utils/transferFlags.js +45 -0
- data/node_modules/chai/node_modules/assertion-error/index.js +116 -0
- data/node_modules/chai/node_modules/deep-eql/index.js +1 -0
- data/node_modules/chai/node_modules/deep-eql/karma.conf.js +20 -0
- data/node_modules/chai/node_modules/deep-eql/lib/eql.js +257 -0
- data/node_modules/chai/node_modules/deep-eql/node_modules/type-detect/index.js +1 -0
- data/node_modules/chai/node_modules/deep-eql/node_modules/type-detect/lib/type.js +142 -0
- data/node_modules/chai/node_modules/type-detect/index.js +1 -0
- data/node_modules/chai/node_modules/type-detect/lib/type.js +134 -0
- data/node_modules/chai/sauce.browsers.js +128 -0
- data/node_modules/dc/Gruntfile.js +437 -0
- data/node_modules/dc/dc.js +10477 -0
- data/node_modules/dc/dc.min.js +23 -0
- data/node_modules/dc/docs/coverage.js +203 -0
- data/node_modules/dc/grunt/format-file-list.js +33 -0
- data/node_modules/dc/index.js +5 -0
- data/node_modules/dc/node_modules/crossfilter2/crossfilter.js +1401 -0
- data/node_modules/dc/node_modules/crossfilter2/crossfilter.min.js +1 -0
- data/node_modules/dc/node_modules/crossfilter2/index.js +1 -0
- data/node_modules/dc/node_modules/crossfilter2/src/array.js +46 -0
- data/node_modules/dc/node_modules/crossfilter2/src/bisect.js +44 -0
- data/node_modules/dc/node_modules/crossfilter2/src/crossfilter.js +872 -0
- data/node_modules/dc/node_modules/crossfilter2/src/filter.js +19 -0
- data/node_modules/dc/node_modules/crossfilter2/src/heap.js +44 -0
- data/node_modules/dc/node_modules/crossfilter2/src/heapselect.js +36 -0
- data/node_modules/dc/node_modules/crossfilter2/src/identity.js +3 -0
- data/node_modules/dc/node_modules/crossfilter2/src/insertionsort.js +18 -0
- data/node_modules/dc/node_modules/crossfilter2/src/null.js +3 -0
- data/node_modules/dc/node_modules/crossfilter2/src/permute.js +8 -0
- data/node_modules/dc/node_modules/crossfilter2/src/quicksort.js +283 -0
- data/node_modules/dc/node_modules/crossfilter2/src/reduce.js +19 -0
- data/node_modules/dc/node_modules/crossfilter2/src/zero.js +3 -0
- data/node_modules/dc/node_modules/d3/d3.js +9554 -0
- data/node_modules/dc/node_modules/d3/d3.min.js +5 -0
- data/node_modules/dc/node_modules/d3/package.js +13 -0
- data/node_modules/dc/node_modules/d3/src/arrays/ascending.js +5 -0
- data/node_modules/dc/node_modules/d3/src/arrays/bisect.js +36 -0
- data/node_modules/dc/node_modules/d3/src/arrays/descending.js +3 -0
- data/node_modules/dc/node_modules/d3/src/arrays/deviation.js +6 -0
- data/node_modules/dc/node_modules/d3/src/arrays/entries.js +5 -0
- data/node_modules/dc/node_modules/d3/src/arrays/extent.js +21 -0
- data/node_modules/dc/node_modules/d3/src/arrays/index.js +25 -0
- data/node_modules/dc/node_modules/d3/src/arrays/keys.js +5 -0
- data/node_modules/dc/node_modules/d3/src/arrays/map.js +84 -0
- data/node_modules/dc/node_modules/d3/src/arrays/max.js +14 -0
- data/node_modules/dc/node_modules/d3/src/arrays/mean.js +15 -0
- data/node_modules/dc/node_modules/d3/src/arrays/median.js +16 -0
- data/node_modules/dc/node_modules/d3/src/arrays/merge.js +21 -0
- data/node_modules/dc/node_modules/d3/src/arrays/min.js +14 -0
- data/node_modules/dc/node_modules/d3/src/arrays/nest.js +97 -0
- data/node_modules/dc/node_modules/d3/src/arrays/pairs.js +5 -0
- data/node_modules/dc/node_modules/d3/src/arrays/permute.js +5 -0
- data/node_modules/dc/node_modules/d3/src/arrays/quantile.js +8 -0
- data/node_modules/dc/node_modules/d3/src/arrays/range.js +26 -0
- data/node_modules/dc/node_modules/d3/src/arrays/set.js +27 -0
- data/node_modules/dc/node_modules/d3/src/arrays/shuffle.js +9 -0
- data/node_modules/dc/node_modules/d3/src/arrays/sum.js +14 -0
- data/node_modules/dc/node_modules/d3/src/arrays/transpose.js +15 -0
- data/node_modules/dc/node_modules/d3/src/arrays/values.js +5 -0
- data/node_modules/dc/node_modules/d3/src/arrays/variance.js +29 -0
- data/node_modules/dc/node_modules/d3/src/arrays/zip.js +5 -0
- data/node_modules/dc/node_modules/d3/src/behavior/behavior.js +1 -0
- data/node_modules/dc/node_modules/d3/src/behavior/drag.js +88 -0
- data/node_modules/dc/node_modules/d3/src/behavior/index.js +3 -0
- data/node_modules/dc/node_modules/d3/src/behavior/zoom.js +348 -0
- data/node_modules/dc/node_modules/d3/src/color/color.js +7 -0
- data/node_modules/dc/node_modules/d3/src/color/hcl.js +34 -0
- data/node_modules/dc/node_modules/d3/src/color/hsl.js +56 -0
- data/node_modules/dc/node_modules/d3/src/color/index.js +6 -0
- data/node_modules/dc/node_modules/d3/src/color/lab.js +60 -0
- data/node_modules/dc/node_modules/d3/src/color/rgb.js +301 -0
- data/node_modules/dc/node_modules/d3/src/color/xyz.js +7 -0
- data/node_modules/dc/node_modules/d3/src/compat/array.js +15 -0
- data/node_modules/dc/node_modules/d3/src/compat/date.js +3 -0
- data/node_modules/dc/node_modules/d3/src/compat/index.js +3 -0
- data/node_modules/dc/node_modules/d3/src/compat/style.js +23 -0
- data/node_modules/dc/node_modules/d3/src/core/array.js +2 -0
- data/node_modules/dc/node_modules/d3/src/core/class.js +8 -0
- data/node_modules/dc/node_modules/d3/src/core/document.js +15 -0
- data/node_modules/dc/node_modules/d3/src/core/functor.js +5 -0
- data/node_modules/dc/node_modules/d3/src/core/identity.js +3 -0
- data/node_modules/dc/node_modules/d3/src/core/index.js +3 -0
- data/node_modules/dc/node_modules/d3/src/core/noop.js +1 -0
- data/node_modules/dc/node_modules/d3/src/core/ns.js +18 -0
- data/node_modules/dc/node_modules/d3/src/core/rebind.js +16 -0
- data/node_modules/dc/node_modules/d3/src/core/source.js +3 -0
- data/node_modules/dc/node_modules/d3/src/core/subclass.js +11 -0
- data/node_modules/dc/node_modules/d3/src/core/target.js +3 -0
- data/node_modules/dc/node_modules/d3/src/core/true.js +3 -0
- data/node_modules/dc/node_modules/d3/src/core/vendor.js +10 -0
- data/node_modules/dc/node_modules/d3/src/core/zero.js +3 -0
- data/node_modules/dc/node_modules/d3/src/d3.js +23 -0
- data/node_modules/dc/node_modules/d3/src/dsv/csv.js +3 -0
- data/node_modules/dc/node_modules/d3/src/dsv/dsv.js +136 -0
- data/node_modules/dc/node_modules/d3/src/dsv/index.js +3 -0
- data/node_modules/dc/node_modules/d3/src/dsv/tsv.js +3 -0
- data/node_modules/dc/node_modules/d3/src/end.js +4 -0
- data/node_modules/dc/node_modules/d3/src/event/dispatch.js +69 -0
- data/node_modules/dc/node_modules/d3/src/event/drag.js +36 -0
- data/node_modules/dc/node_modules/d3/src/event/event.js +50 -0
- data/node_modules/dc/node_modules/d3/src/event/index.js +6 -0
- data/node_modules/dc/node_modules/d3/src/event/mouse.js +39 -0
- data/node_modules/dc/node_modules/d3/src/event/timer.js +82 -0
- data/node_modules/dc/node_modules/d3/src/event/touch.js +11 -0
- data/node_modules/dc/node_modules/d3/src/event/touches.js +12 -0
- data/node_modules/dc/node_modules/d3/src/format/collapse.js +3 -0
- data/node_modules/dc/node_modules/d3/src/format/format.js +3 -0
- data/node_modules/dc/node_modules/d3/src/format/formatPrefix.js +24 -0
- data/node_modules/dc/node_modules/d3/src/format/index.js +4 -0
- data/node_modules/dc/node_modules/d3/src/format/precision.js +3 -0
- data/node_modules/dc/node_modules/d3/src/format/requote.js +5 -0
- data/node_modules/dc/node_modules/d3/src/format/round.js +5 -0
- data/node_modules/dc/node_modules/d3/src/geo/albers-usa.js +129 -0
- data/node_modules/dc/node_modules/d3/src/geo/albers.js +11 -0
- data/node_modules/dc/node_modules/d3/src/geo/area.js +69 -0
- data/node_modules/dc/node_modules/d3/src/geo/azimuthal-equal-area.js +12 -0
- data/node_modules/dc/node_modules/d3/src/geo/azimuthal-equidistant.js +13 -0
- data/node_modules/dc/node_modules/d3/src/geo/azimuthal.js +25 -0
- data/node_modules/dc/node_modules/d3/src/geo/bounds.js +168 -0
- data/node_modules/dc/node_modules/d3/src/geo/cartesian.js +47 -0
- data/node_modules/dc/node_modules/d3/src/geo/centroid.js +149 -0
- data/node_modules/dc/node_modules/d3/src/geo/circle.js +81 -0
- data/node_modules/dc/node_modules/d3/src/geo/clip-antimeridian.js +95 -0
- data/node_modules/dc/node_modules/d3/src/geo/clip-circle.js +178 -0
- data/node_modules/dc/node_modules/d3/src/geo/clip-extent.js +196 -0
- data/node_modules/dc/node_modules/d3/src/geo/clip-polygon.js +104 -0
- data/node_modules/dc/node_modules/d3/src/geo/clip.js +149 -0
- data/node_modules/dc/node_modules/d3/src/geo/compose.js +12 -0
- data/node_modules/dc/node_modules/d3/src/geo/conic-conformal.js +39 -0
- data/node_modules/dc/node_modules/d3/src/geo/conic-equal-area.js +33 -0
- data/node_modules/dc/node_modules/d3/src/geo/conic-equidistant.js +36 -0
- data/node_modules/dc/node_modules/d3/src/geo/conic.js +16 -0
- data/node_modules/dc/node_modules/d3/src/geo/distance.js +13 -0
- data/node_modules/dc/node_modules/d3/src/geo/equirectangular.js +10 -0
- data/node_modules/dc/node_modules/d3/src/geo/geo.js +1 -0
- data/node_modules/dc/node_modules/d3/src/geo/gnomonic.js +12 -0
- data/node_modules/dc/node_modules/d3/src/geo/graticule.js +103 -0
- data/node_modules/dc/node_modules/d3/src/geo/greatArc.js +42 -0
- data/node_modules/dc/node_modules/d3/src/geo/index.js +33 -0
- data/node_modules/dc/node_modules/d3/src/geo/interpolate.js +38 -0
- data/node_modules/dc/node_modules/d3/src/geo/length.js +44 -0
- data/node_modules/dc/node_modules/d3/src/geo/mercator.js +48 -0
- data/node_modules/dc/node_modules/d3/src/geo/orthographic.js +12 -0
- data/node_modules/dc/node_modules/d3/src/geo/path-area.js +41 -0
- data/node_modules/dc/node_modules/d3/src/geo/path-bounds.js +21 -0
- data/node_modules/dc/node_modules/d3/src/geo/path-buffer.js +59 -0
- data/node_modules/dc/node_modules/d3/src/geo/path-centroid.js +78 -0
- data/node_modules/dc/node_modules/d3/src/geo/path-context.js +49 -0
- data/node_modules/dc/node_modules/d3/src/geo/path.js +87 -0
- data/node_modules/dc/node_modules/d3/src/geo/point-in-polygon.js +71 -0
- data/node_modules/dc/node_modules/d3/src/geo/projection.js +121 -0
- data/node_modules/dc/node_modules/d3/src/geo/resample.js +109 -0
- data/node_modules/dc/node_modules/d3/src/geo/rotation.js +79 -0
- data/node_modules/dc/node_modules/d3/src/geo/spherical.js +13 -0
- data/node_modules/dc/node_modules/d3/src/geo/stereographic.js +12 -0
- data/node_modules/dc/node_modules/d3/src/geo/stream.js +71 -0
- data/node_modules/dc/node_modules/d3/src/geo/transform.js +36 -0
- data/node_modules/dc/node_modules/d3/src/geo/transverse-mercator.js +31 -0
- data/node_modules/dc/node_modules/d3/src/geom/clip-line.js +66 -0
- data/node_modules/dc/node_modules/d3/src/geom/delaunay.js +6 -0
- data/node_modules/dc/node_modules/d3/src/geom/geom.js +1 -0
- data/node_modules/dc/node_modules/d3/src/geom/hull.js +91 -0
- data/node_modules/dc/node_modules/d3/src/geom/index.js +6 -0
- data/node_modules/dc/node_modules/d3/src/geom/point.js +7 -0
- data/node_modules/dc/node_modules/d3/src/geom/polygon.js +105 -0
- data/node_modules/dc/node_modules/d3/src/geom/quadtree.js +243 -0
- data/node_modules/dc/node_modules/d3/src/geom/voronoi.js +110 -0
- data/node_modules/dc/node_modules/d3/src/geom/voronoi/beach.js +186 -0
- data/node_modules/dc/node_modules/d3/src/geom/voronoi/cell.js +64 -0
- data/node_modules/dc/node_modules/d3/src/geom/voronoi/circle.js +73 -0
- data/node_modules/dc/node_modules/d3/src/geom/voronoi/clip.js +80 -0
- data/node_modules/dc/node_modules/d3/src/geom/voronoi/edge.js +50 -0
- data/node_modules/dc/node_modules/d3/src/geom/voronoi/index.js +59 -0
- data/node_modules/dc/node_modules/d3/src/geom/voronoi/red-black.js +235 -0
- data/node_modules/dc/node_modules/d3/src/interpolate/array.js +19 -0
- data/node_modules/dc/node_modules/d3/src/interpolate/ease.js +111 -0
- data/node_modules/dc/node_modules/d3/src/interpolate/hcl.js +20 -0
- data/node_modules/dc/node_modules/d3/src/interpolate/hsl.js +20 -0
- data/node_modules/dc/node_modules/d3/src/interpolate/index.js +14 -0
- data/node_modules/dc/node_modules/d3/src/interpolate/interpolate.js +26 -0
- data/node_modules/dc/node_modules/d3/src/interpolate/lab.js +17 -0
- data/node_modules/dc/node_modules/d3/src/interpolate/number.js +6 -0
- data/node_modules/dc/node_modules/d3/src/interpolate/object.js +25 -0
- data/node_modules/dc/node_modules/d3/src/interpolate/rgb.js +20 -0
- data/node_modules/dc/node_modules/d3/src/interpolate/round.js +6 -0
- data/node_modules/dc/node_modules/d3/src/interpolate/string.js +54 -0
- data/node_modules/dc/node_modules/d3/src/interpolate/transform.js +59 -0
- data/node_modules/dc/node_modules/d3/src/interpolate/uninterpolate.js +9 -0
- data/node_modules/dc/node_modules/d3/src/interpolate/zoom.js +53 -0
- data/node_modules/dc/node_modules/d3/src/layout/bundle.js +59 -0
- data/node_modules/dc/node_modules/d3/src/layout/chord.js +157 -0
- data/node_modules/dc/node_modules/d3/src/layout/cluster.js +92 -0
- data/node_modules/dc/node_modules/d3/src/layout/force.js +372 -0
- data/node_modules/dc/node_modules/d3/src/layout/hierarchy.js +136 -0
- data/node_modules/dc/node_modules/d3/src/layout/histogram.js +110 -0
- data/node_modules/dc/node_modules/d3/src/layout/index.js +13 -0
- data/node_modules/dc/node_modules/d3/src/layout/layout.js +1 -0
- data/node_modules/dc/node_modules/d3/src/layout/pack.js +211 -0
- data/node_modules/dc/node_modules/d3/src/layout/partition.js +51 -0
- data/node_modules/dc/node_modules/d3/src/layout/pie.js +78 -0
- data/node_modules/dc/node_modules/d3/src/layout/stack.js +247 -0
- data/node_modules/dc/node_modules/d3/src/layout/tree.js +240 -0
- data/node_modules/dc/node_modules/d3/src/layout/treemap.js +229 -0
- data/node_modules/dc/node_modules/d3/src/locale/ca-ES.js +16 -0
- data/node_modules/dc/node_modules/d3/src/locale/de-CH.js +16 -0
- data/node_modules/dc/node_modules/d3/src/locale/de-DE.js +16 -0
- data/node_modules/dc/node_modules/d3/src/locale/en-CA.js +16 -0
- data/node_modules/dc/node_modules/d3/src/locale/en-GB.js +16 -0
- data/node_modules/dc/node_modules/d3/src/locale/en-US.js +16 -0
- data/node_modules/dc/node_modules/d3/src/locale/es-ES.js +16 -0
- data/node_modules/dc/node_modules/d3/src/locale/fi-FI.js +16 -0
- data/node_modules/dc/node_modules/d3/src/locale/fr-CA.js +16 -0
- data/node_modules/dc/node_modules/d3/src/locale/fr-FR.js +16 -0
- data/node_modules/dc/node_modules/d3/src/locale/he-IL.js +16 -0
- data/node_modules/dc/node_modules/d3/src/locale/hu-HU.js +16 -0
- data/node_modules/dc/node_modules/d3/src/locale/it-IT.js +16 -0
- data/node_modules/dc/node_modules/d3/src/locale/ja-JP.js +16 -0
- data/node_modules/dc/node_modules/d3/src/locale/ko-KR.js +16 -0
- data/node_modules/dc/node_modules/d3/src/locale/locale.js +9 -0
- data/node_modules/dc/node_modules/d3/src/locale/mk-MK.js +16 -0
- data/node_modules/dc/node_modules/d3/src/locale/nl-NL.js +16 -0
- data/node_modules/dc/node_modules/d3/src/locale/number-format.js +155 -0
- data/node_modules/dc/node_modules/d3/src/locale/pl-PL.js +16 -0
- data/node_modules/dc/node_modules/d3/src/locale/pt-BR.js +16 -0
- data/node_modules/dc/node_modules/d3/src/locale/ru-RU.js +16 -0
- data/node_modules/dc/node_modules/d3/src/locale/sv-SE.js +16 -0
- data/node_modules/dc/node_modules/d3/src/locale/time-format.js +370 -0
- data/node_modules/dc/node_modules/d3/src/locale/time-scale.js +0 -0
- data/node_modules/dc/node_modules/d3/src/locale/zh-CN.js +16 -0
- data/node_modules/dc/node_modules/d3/src/math/abs.js +1 -0
- data/node_modules/dc/node_modules/d3/src/math/adder.js +34 -0
- data/node_modules/dc/node_modules/d3/src/math/index.js +2 -0
- data/node_modules/dc/node_modules/d3/src/math/number.js +7 -0
- data/node_modules/dc/node_modules/d3/src/math/random.js +34 -0
- data/node_modules/dc/node_modules/d3/src/math/transform.js +64 -0
- data/node_modules/dc/node_modules/d3/src/math/trigonometry.js +44 -0
- data/node_modules/dc/node_modules/d3/src/scale/bilinear.js +7 -0
- data/node_modules/dc/node_modules/d3/src/scale/category.js +58 -0
- data/node_modules/dc/node_modules/d3/src/scale/identity.js +33 -0
- data/node_modules/dc/node_modules/d3/src/scale/index.js +11 -0
- data/node_modules/dc/node_modules/d3/src/scale/linear.js +160 -0
- data/node_modules/dc/node_modules/d3/src/scale/log.js +92 -0
- data/node_modules/dc/node_modules/d3/src/scale/nice.js +30 -0
- data/node_modules/dc/node_modules/d3/src/scale/ordinal.js +102 -0
- data/node_modules/dc/node_modules/d3/src/scale/polylinear.js +24 -0
- data/node_modules/dc/node_modules/d3/src/scale/pow.js +57 -0
- data/node_modules/dc/node_modules/d3/src/scale/quantile.js +55 -0
- data/node_modules/dc/node_modules/d3/src/scale/quantize.js +44 -0
- data/node_modules/dc/node_modules/d3/src/scale/scale.js +10 -0
- data/node_modules/dc/node_modules/d3/src/scale/sqrt.js +6 -0
- data/node_modules/dc/node_modules/d3/src/scale/threshold.js +36 -0
- data/node_modules/dc/node_modules/d3/src/selection/append.js +28 -0
- data/node_modules/dc/node_modules/d3/src/selection/attr.js +62 -0
- data/node_modules/dc/node_modules/d3/src/selection/call.js +8 -0
- data/node_modules/dc/node_modules/d3/src/selection/classed.js +76 -0
- data/node_modules/dc/node_modules/d3/src/selection/data.js +117 -0
- data/node_modules/dc/node_modules/d3/src/selection/datum.js +7 -0
- data/node_modules/dc/node_modules/d3/src/selection/each.js +16 -0
- data/node_modules/dc/node_modules/d3/src/selection/empty.js +5 -0
- data/node_modules/dc/node_modules/d3/src/selection/enter-insert.js +20 -0
- data/node_modules/dc/node_modules/d3/src/selection/enter-select.js +27 -0
- data/node_modules/dc/node_modules/d3/src/selection/enter.js +21 -0
- data/node_modules/dc/node_modules/d3/src/selection/filter.js +28 -0
- data/node_modules/dc/node_modules/d3/src/selection/html.js +10 -0
- data/node_modules/dc/node_modules/d3/src/selection/index.js +1 -0
- data/node_modules/dc/node_modules/d3/src/selection/insert.js +9 -0
- data/node_modules/dc/node_modules/d3/src/selection/interrupt.js +27 -0
- data/node_modules/dc/node_modules/d3/src/selection/node.js +11 -0
- data/node_modules/dc/node_modules/d3/src/selection/on.js +106 -0
- data/node_modules/dc/node_modules/d3/src/selection/order.js +13 -0
- data/node_modules/dc/node_modules/d3/src/selection/property.js +43 -0
- data/node_modules/dc/node_modules/d3/src/selection/remove.js +13 -0
- data/node_modules/dc/node_modules/d3/src/selection/select.js +32 -0
- data/node_modules/dc/node_modules/d3/src/selection/selectAll.js +27 -0
- data/node_modules/dc/node_modules/d3/src/selection/selection.js +81 -0
- data/node_modules/dc/node_modules/d3/src/selection/size.js +7 -0
- data/node_modules/dc/node_modules/d3/src/selection/sort.js +15 -0
- data/node_modules/dc/node_modules/d3/src/selection/style.js +59 -0
- data/node_modules/dc/node_modules/d3/src/selection/text.js +10 -0
- data/node_modules/dc/node_modules/d3/src/selection/transition.js +21 -0
- data/node_modules/dc/node_modules/d3/src/start.js +2 -0
- data/node_modules/dc/node_modules/d3/src/svg/arc.js +292 -0
- data/node_modules/dc/node_modules/d3/src/svg/area-radial.js +14 -0
- data/node_modules/dc/node_modules/d3/src/svg/area.js +121 -0
- data/node_modules/dc/node_modules/d3/src/svg/axis.js +160 -0
- data/node_modules/dc/node_modules/d3/src/svg/brush.js +429 -0
- data/node_modules/dc/node_modules/d3/src/svg/chord.js +90 -0
- data/node_modules/dc/node_modules/d3/src/svg/diagonal-radial.js +27 -0
- data/node_modules/dc/node_modules/d3/src/svg/diagonal.js +43 -0
- data/node_modules/dc/node_modules/d3/src/svg/index.js +12 -0
- data/node_modules/dc/node_modules/d3/src/svg/line-radial.js +27 -0
- data/node_modules/dc/node_modules/d3/src/svg/line.js +432 -0
- data/node_modules/dc/node_modules/d3/src/svg/svg.js +1 -0
- data/node_modules/dc/node_modules/d3/src/svg/symbol.js +105 -0
- data/node_modules/dc/node_modules/d3/src/time/day.js +21 -0
- data/node_modules/dc/node_modules/d3/src/time/format-iso.js +19 -0
- data/node_modules/dc/node_modules/d3/src/time/format-utc.js +3 -0
- data/node_modules/dc/node_modules/d3/src/time/format.js +4 -0
- data/node_modules/dc/node_modules/d3/src/time/hour.js +14 -0
- data/node_modules/dc/node_modules/d3/src/time/index.js +14 -0
- data/node_modules/dc/node_modules/d3/src/time/interval.js +71 -0
- data/node_modules/dc/node_modules/d3/src/time/minute.js +13 -0
- data/node_modules/dc/node_modules/d3/src/time/month.js +16 -0
- data/node_modules/dc/node_modules/d3/src/time/scale-utc.js +25 -0
- data/node_modules/dc/node_modules/d3/src/time/scale.js +155 -0
- data/node_modules/dc/node_modules/d3/src/time/second.js +13 -0
- data/node_modules/dc/node_modules/d3/src/time/time.js +33 -0
- data/node_modules/dc/node_modules/d3/src/time/week.js +31 -0
- data/node_modules/dc/node_modules/d3/src/time/year.js +16 -0
- data/node_modules/dc/node_modules/d3/src/transition/attr.js +58 -0
- data/node_modules/dc/node_modules/d3/src/transition/delay.js +10 -0
- data/node_modules/dc/node_modules/d3/src/transition/duration.js +10 -0
- data/node_modules/dc/node_modules/d3/src/transition/each.js +26 -0
- data/node_modules/dc/node_modules/d3/src/transition/ease.js +10 -0
- data/node_modules/dc/node_modules/d3/src/transition/filter.js +22 -0
- data/node_modules/dc/node_modules/d3/src/transition/index.js +1 -0
- data/node_modules/dc/node_modules/d3/src/transition/remove.js +9 -0
- data/node_modules/dc/node_modules/d3/src/transition/select.js +28 -0
- data/node_modules/dc/node_modules/d3/src/transition/selectAll.js +31 -0
- data/node_modules/dc/node_modules/d3/src/transition/style.js +53 -0
- data/node_modules/dc/node_modules/d3/src/transition/subtransition.js +25 -0
- data/node_modules/dc/node_modules/d3/src/transition/text.js +11 -0
- data/node_modules/dc/node_modules/d3/src/transition/transition.js +161 -0
- data/node_modules/dc/node_modules/d3/src/transition/tween.js +17 -0
- data/node_modules/dc/node_modules/d3/src/xhr/html.js +12 -0
- data/node_modules/dc/node_modules/d3/src/xhr/index.js +5 -0
- data/node_modules/dc/node_modules/d3/src/xhr/json.js +9 -0
- data/node_modules/dc/node_modules/d3/src/xhr/text.js +5 -0
- data/node_modules/dc/node_modules/d3/src/xhr/xhr.js +126 -0
- data/node_modules/dc/node_modules/d3/src/xhr/xml.js +5 -0
- data/node_modules/dc/regression/inject-serializer.js +6 -0
- data/node_modules/dc/regression/stock-regression-test.js +140 -0
- data/node_modules/dc/spec/bar-chart-spec.js +1230 -0
- data/node_modules/dc/spec/base-mixin-spec.js +611 -0
- data/node_modules/dc/spec/biggish-data-spec.js +136 -0
- data/node_modules/dc/spec/box-plot-spec.js +211 -0
- data/node_modules/dc/spec/bubble-chart-spec.js +450 -0
- data/node_modules/dc/spec/bubble-overlay-spec.js +102 -0
- data/node_modules/dc/spec/color-spec.js +89 -0
- data/node_modules/dc/spec/composite-chart-spec.js +691 -0
- data/node_modules/dc/spec/coordinate-grid-chart-spec.js +962 -0
- data/node_modules/dc/spec/core-spec.js +301 -0
- data/node_modules/dc/spec/data-addition-spec.js +122 -0
- data/node_modules/dc/spec/data-count-spec.js +180 -0
- data/node_modules/dc/spec/data-grid-spec.js +124 -0
- data/node_modules/dc/spec/data-table-spec.js +251 -0
- data/node_modules/dc/spec/event-spec.js +41 -0
- data/node_modules/dc/spec/filter-dates-spec.js +92 -0
- data/node_modules/dc/spec/filters-spec.js +140 -0
- data/node_modules/dc/spec/geo-choropleth-chart-spec.js +225 -0
- data/node_modules/dc/spec/heatmap-spec.js +363 -0
- data/node_modules/dc/spec/helpers/custom_matchers.js +213 -0
- data/node_modules/dc/spec/helpers/fixtures.js +81 -0
- data/node_modules/dc/spec/helpers/geoFixtures.js +113 -0
- data/node_modules/dc/spec/helpers/load-jsreporter.js +37 -0
- data/node_modules/dc/spec/helpers/spec-helper.js +53 -0
- data/node_modules/dc/spec/legend-spec.js +266 -0
- data/node_modules/dc/spec/line-chart-spec.js +709 -0
- data/node_modules/dc/spec/logger-spec.js +80 -0
- data/node_modules/dc/spec/number-display-spec.js +168 -0
- data/node_modules/dc/spec/pie-chart-spec.js +677 -0
- data/node_modules/dc/spec/row-chart-spec.js +362 -0
- data/node_modules/dc/spec/scatter-plot-spec.js +336 -0
- data/node_modules/dc/spec/series-chart-spec.js +133 -0
- data/node_modules/dc/spec/utils-spec.js +110 -0
- data/node_modules/dc/src/banner.js +2 -0
- data/node_modules/dc/src/bar-chart.js +374 -0
- data/node_modules/dc/src/base-mixin.js +1478 -0
- data/node_modules/dc/src/box-plot.js +240 -0
- data/node_modules/dc/src/bubble-chart.js +177 -0
- data/node_modules/dc/src/bubble-mixin.js +244 -0
- data/node_modules/dc/src/bubble-overlay.js +207 -0
- data/node_modules/dc/src/cap-mixin.js +151 -0
- data/node_modules/dc/src/color-mixin.js +172 -0
- data/node_modules/dc/src/composite-chart.js +544 -0
- data/node_modules/dc/src/coordinate-grid-mixin.js +1300 -0
- data/node_modules/dc/src/core.js +425 -0
- data/node_modules/dc/src/d3.box.js +317 -0
- data/node_modules/dc/src/data-count.js +110 -0
- data/node_modules/dc/src/data-grid.js +243 -0
- data/node_modules/dc/src/data-table.js +419 -0
- data/node_modules/dc/src/errors.js +28 -0
- data/node_modules/dc/src/events.js +37 -0
- data/node_modules/dc/src/filters.js +124 -0
- data/node_modules/dc/src/footer.js +35 -0
- data/node_modules/dc/src/geo-choropleth-chart.js +279 -0
- data/node_modules/dc/src/heatmap.js +378 -0
- data/node_modules/dc/src/legend.js +277 -0
- data/node_modules/dc/src/line-chart.js +504 -0
- data/node_modules/dc/src/logger.js +40 -0
- data/node_modules/dc/src/margin-mixin.js +44 -0
- data/node_modules/dc/src/number-display.js +141 -0
- data/node_modules/dc/src/pie-chart.js +571 -0
- data/node_modules/dc/src/row-chart.js +425 -0
- data/node_modules/dc/src/scatter-plot.js +338 -0
- data/node_modules/dc/src/series-chart.js +192 -0
- data/node_modules/dc/src/stack-mixin.js +319 -0
- data/node_modules/dc/src/utils.js +290 -0
- data/node_modules/dc/web/docs/html/scripts/docstrap.lib.js +11 -0
- data/node_modules/dc/web/docs/html/scripts/fulltext-search-ui.js +89 -0
- data/node_modules/dc/web/docs/html/scripts/fulltext-search.js +36 -0
- data/node_modules/dc/web/docs/html/scripts/lunr.min.js +7 -0
- data/node_modules/dc/web/docs/html/scripts/prettify/jquery.min.js +6 -0
- data/node_modules/dc/web/docs/html/scripts/prettify/lang-css.js +21 -0
- data/node_modules/dc/web/docs/html/scripts/prettify/prettify.js +496 -0
- data/node_modules/dc/web/docs/html/scripts/sunlight.js +1157 -0
- data/node_modules/dc/web/docs/html/scripts/toc.js +203 -0
- data/node_modules/dc/web/ep/list.js +106 -0
- data/node_modules/dc/web/examples/lysenko-interval-tree.js +447 -0
- data/node_modules/dc/web/highlighter/shAutoloader.js +17 -0
- data/node_modules/dc/web/highlighter/shBrushJScript.js +52 -0
- data/node_modules/dc/web/highlighter/shBrushXml.js +69 -0
- data/node_modules/dc/web/highlighter/shCore.js +17 -0
- data/node_modules/dc/web/js/colorbrewer.js +1 -0
- data/node_modules/dc/web/js/crossfilter.js +1401 -0
- data/node_modules/dc/web/js/d3.js +9554 -0
- data/node_modules/dc/web/js/dc.js +10477 -0
- data/node_modules/dc/web/js/dc.min.js +23 -0
- data/node_modules/dc/web/js/env-data.js +218 -0
- data/node_modules/dc/web/js/jasmine-jsreporter.js +394 -0
- data/node_modules/dc/web/stock.js +685 -0
- data/node_modules/dc/web/transitions/transition-test.js +45 -0
- data/node_modules/jquery/dist/jquery.js +9814 -0
- data/node_modules/jquery/dist/jquery.min.js +4 -0
- data/node_modules/jquery/external/sizzle/dist/sizzle.js +2143 -0
- data/node_modules/jquery/external/sizzle/dist/sizzle.min.js +3 -0
- data/node_modules/jquery/src/ajax.js +845 -0
- data/node_modules/jquery/src/ajax/jsonp.js +100 -0
- data/node_modules/jquery/src/ajax/load.js +83 -0
- data/node_modules/jquery/src/ajax/parseJSON.js +13 -0
- data/node_modules/jquery/src/ajax/parseXML.js +27 -0
- data/node_modules/jquery/src/ajax/script.js +68 -0
- data/node_modules/jquery/src/ajax/var/location.js +3 -0
- data/node_modules/jquery/src/ajax/var/nonce.js +5 -0
- data/node_modules/jquery/src/ajax/var/rquery.js +3 -0
- data/node_modules/jquery/src/ajax/xhr.js +167 -0
- data/node_modules/jquery/src/attributes.js +11 -0
- data/node_modules/jquery/src/attributes/attr.js +142 -0
- data/node_modules/jquery/src/attributes/classes.js +177 -0
- data/node_modules/jquery/src/attributes/prop.js +125 -0
- data/node_modules/jquery/src/attributes/support.js +36 -0
- data/node_modules/jquery/src/attributes/val.js +177 -0
- data/node_modules/jquery/src/callbacks.js +232 -0
- data/node_modules/jquery/src/core.js +494 -0
- data/node_modules/jquery/src/core/access.js +65 -0
- data/node_modules/jquery/src/core/init.js +134 -0
- data/node_modules/jquery/src/core/parseHTML.js +41 -0
- data/node_modules/jquery/src/core/ready.js +103 -0
- data/node_modules/jquery/src/core/var/rsingleTag.js +5 -0
- data/node_modules/jquery/src/css.js +502 -0
- data/node_modules/jquery/src/css/addGetHookIf.js +24 -0
- data/node_modules/jquery/src/css/adjustCSS.js +65 -0
- data/node_modules/jquery/src/css/curCSS.js +60 -0
- data/node_modules/jquery/src/css/defaultDisplay.js +72 -0
- data/node_modules/jquery/src/css/hiddenVisibleSelectors.js +18 -0
- data/node_modules/jquery/src/css/showHide.js +48 -0
- data/node_modules/jquery/src/css/support.js +121 -0
- data/node_modules/jquery/src/css/var/cssExpand.js +3 -0
- data/node_modules/jquery/src/css/var/getStyles.js +15 -0
- data/node_modules/jquery/src/css/var/isHidden.js +16 -0
- data/node_modules/jquery/src/css/var/rmargin.js +3 -0
- data/node_modules/jquery/src/css/var/rnumnonpx.js +5 -0
- data/node_modules/jquery/src/css/var/swap.js +24 -0
- data/node_modules/jquery/src/data.js +187 -0
- data/node_modules/jquery/src/data/Data.js +200 -0
- data/node_modules/jquery/src/data/var/acceptData.js +18 -0
- data/node_modules/jquery/src/data/var/dataPriv.js +5 -0
- data/node_modules/jquery/src/data/var/dataUser.js +5 -0
- data/node_modules/jquery/src/deferred.js +158 -0
- data/node_modules/jquery/src/deprecated.js +32 -0
- data/node_modules/jquery/src/dimensions.js +54 -0
- data/node_modules/jquery/src/effects.js +629 -0
- data/node_modules/jquery/src/effects/Tween.js +121 -0
- data/node_modules/jquery/src/effects/animatedSelector.js +13 -0
- data/node_modules/jquery/src/event.js +711 -0
- data/node_modules/jquery/src/event/ajax.js +20 -0
- data/node_modules/jquery/src/event/alias.js +27 -0
- data/node_modules/jquery/src/event/focusin.js +53 -0
- data/node_modules/jquery/src/event/support.js +9 -0
- data/node_modules/jquery/src/event/trigger.js +183 -0
- data/node_modules/jquery/src/exports/amd.js +24 -0
- data/node_modules/jquery/src/exports/global.js +26 -0
- data/node_modules/jquery/src/intro.js +44 -0
- data/node_modules/jquery/src/jquery.js +37 -0
- data/node_modules/jquery/src/manipulation.js +481 -0
- data/node_modules/jquery/src/manipulation/_evalUrl.js +20 -0
- data/node_modules/jquery/src/manipulation/buildFragment.js +102 -0
- data/node_modules/jquery/src/manipulation/getAll.js +21 -0
- data/node_modules/jquery/src/manipulation/setGlobalEval.js +20 -0
- data/node_modules/jquery/src/manipulation/support.js +33 -0
- data/node_modules/jquery/src/manipulation/var/rcheckableType.js +3 -0
- data/node_modules/jquery/src/manipulation/var/rscriptType.js +3 -0
- data/node_modules/jquery/src/manipulation/var/rtagName.js +3 -0
- data/node_modules/jquery/src/manipulation/wrapMap.js +27 -0
- data/node_modules/jquery/src/offset.js +218 -0
- data/node_modules/jquery/src/outro.js +2 -0
- data/node_modules/jquery/src/queue.js +143 -0
- data/node_modules/jquery/src/queue/delay.js +22 -0
- data/node_modules/jquery/src/selector-native.js +211 -0
- data/node_modules/jquery/src/selector-sizzle.js +14 -0
- data/node_modules/jquery/src/selector.js +1 -0
- data/node_modules/jquery/src/serialize.js +125 -0
- data/node_modules/jquery/src/traversing.js +175 -0
- data/node_modules/jquery/src/traversing/findFilter.js +100 -0
- data/node_modules/jquery/src/traversing/var/dir.js +20 -0
- data/node_modules/jquery/src/traversing/var/rneedsContext.js +6 -0
- data/node_modules/jquery/src/traversing/var/siblings.js +15 -0
- data/node_modules/jquery/src/var/arr.js +3 -0
- data/node_modules/jquery/src/var/class2type.js +5 -0
- data/node_modules/jquery/src/var/concat.js +5 -0
- data/node_modules/jquery/src/var/document.js +3 -0
- data/node_modules/jquery/src/var/documentElement.js +5 -0
- data/node_modules/jquery/src/var/hasOwn.js +5 -0
- data/node_modules/jquery/src/var/indexOf.js +5 -0
- data/node_modules/jquery/src/var/pnum.js +3 -0
- data/node_modules/jquery/src/var/push.js +5 -0
- data/node_modules/jquery/src/var/rcssNum.js +7 -0
- data/node_modules/jquery/src/var/rnotwhite.js +3 -0
- data/node_modules/jquery/src/var/slice.js +5 -0
- data/node_modules/jquery/src/var/support.js +5 -0
- data/node_modules/jquery/src/var/toString.js +5 -0
- data/node_modules/jquery/src/wrap.js +79 -0
- data/target/mdarray_sol.jar +0 -0
- data/test/jx/test_complete.rb +35 -0
- data/test/jx/test_js.rb +543 -0
- data/test/jx/test_proxy_array.rb +239 -0
- data/test/jx/test_proxy_hash.rb +160 -0
- data/test/jx/test_proxy_lambda.rb +80 -0
- data/test/jx/test_rb_js_compat.rb +135 -0
- data/test/jx/test_style_sheets.rb +90 -0
- data/test/mdarray/test_mdarray.rb +75 -0
- data/util/cacert.pem +4095 -0
- data/util/download.rb +256 -0
- data/vendor/jxbrowser-6.8.jar +0 -0
- data/vendor/licence.jar +0 -0
- data/version.rb +2 -0
- metadata +817 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: 85ee125673b2dafbeecb843794c40f11ce9e63ed
|
|
4
|
+
data.tar.gz: 5ce8f5b6aed244c78585cfbfd2f39275c54a7bb0
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: ec0ec33f60f03a8437616a7e488db354546e2de9fc5486f4d66bd190a0056eddcf7ca714ad40281e7166a2fca3fce4c7138b07bba64b94d1b087ed1c6be6852c
|
|
7
|
+
data.tar.gz: b0b37d08fbb71472b56800f111506145e4da74312c643ea68670ef43801585716171728d88af9e7030b545cfbc394164cb2cdb200b0afee700e039aa2115f506
|
data/LICENSE.txt
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
|
|
3
|
+
##########################################################################################
|
|
4
|
+
This version of MDArray-sol is licensed under the BSD 2-clause license. MDArray-sol uses
|
|
5
|
+
JxBrowser http://www.teamdev.com/jxbrowser, which is a proprietary software. The use of
|
|
6
|
+
JxBrowser is governed by JxBrowser Product Licence Agreement
|
|
7
|
+
http://www.teamdev.com/jxbrowser-licence-agreement. If you would like to use JxBrowser
|
|
8
|
+
in your development, please contact TeamDev.
|
|
9
|
+
##########################################################################################
|
|
10
|
+
|
|
11
|
+
-----
|
|
12
|
+
|
|
13
|
+
Copyright (c) 2016, Rodrigo Botafogo
|
|
14
|
+
All rights reserved.
|
|
15
|
+
|
|
16
|
+
Redistribution and use in source and binary forms, with or without modification, are permitted
|
|
17
|
+
provided that the following conditions are met:
|
|
18
|
+
|
|
19
|
+
* Redistributions of source code must retain the above copyright notice, this list of conditions
|
|
20
|
+
and the following disclaimer.
|
|
21
|
+
|
|
22
|
+
* Redistributions in binary form must reproduce the above copyright notice, this list of
|
|
23
|
+
conditions and the following disclaimer in the documentation and/or other materials provided
|
|
24
|
+
with the distribution.
|
|
25
|
+
|
|
26
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
|
|
27
|
+
EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
|
28
|
+
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
|
|
29
|
+
THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
30
|
+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
|
|
31
|
+
OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
32
|
+
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
33
|
+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
34
|
+
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
35
|
+
##########################################################################################
|
data/LICENSE.txt~
ADDED
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
|
|
3
|
+
##########################################################################################
|
|
4
|
+
#
|
|
5
|
+
# Copyright 1998-2008 University Corporation for Atmospheric Research/Unidata
|
|
6
|
+
#
|
|
7
|
+
# Portions of this software were developed by the Unidata Program at the
|
|
8
|
+
# University Corporation for Atmospheric Research.
|
|
9
|
+
#
|
|
10
|
+
# Access and use of this software shall impose the following obligations
|
|
11
|
+
# and understandings on the user. The user is granted the right, without
|
|
12
|
+
# any fee or cost, to use, copy, modify, alter, enhance and distribute
|
|
13
|
+
# this software, and any derivative works thereof, and its supporting
|
|
14
|
+
# documentation for any purpose whatsoever, provided that this entire
|
|
15
|
+
# notice appears in all copies of the software, derivative works and
|
|
16
|
+
# supporting documentation. Further, UCAR requests that the user credit
|
|
17
|
+
# UCAR/Unidata in any publications that result from the use of this
|
|
18
|
+
# software or in any product that includes this software. The names UCAR
|
|
19
|
+
# and/or Unidata, however, may not be used in any advertising or publicity
|
|
20
|
+
# to endorse or promote any products or commercial entity unless specific
|
|
21
|
+
# written permission is obtained from UCAR/Unidata. The user also
|
|
22
|
+
# understands that UCAR/Unidata is not obligated to provide the user with
|
|
23
|
+
# any support, consulting, training or assistance of any kind with regard
|
|
24
|
+
# to the use, operation and performance of this software nor to provide
|
|
25
|
+
# the user with any updates, revisions, new versions or "bug fixes."
|
|
26
|
+
#
|
|
27
|
+
# THIS SOFTWARE IS PROVIDED BY UCAR/UNIDATA "AS IS" AND ANY EXPRESS OR
|
|
28
|
+
# IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
29
|
+
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
30
|
+
# DISCLAIMED. IN NO EVENT SHALL UCAR/UNIDATA BE LIABLE FOR ANY SPECIAL,
|
|
31
|
+
# INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING
|
|
32
|
+
# FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
|
|
33
|
+
# NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
|
|
34
|
+
# WITH THE ACCESS, USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
35
|
+
##########################################################################################
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
##########################################################################################
|
|
39
|
+
This version of MDArray is licensed under the BSD 2-clause license.
|
|
40
|
+
|
|
41
|
+
* http://sciruby.com
|
|
42
|
+
* http://github.com/sciruby/sciruby/wiki/License
|
|
43
|
+
|
|
44
|
+
You *must* read the Contributor Agreement before contributing code to the SciRuby Project.
|
|
45
|
+
This is available online:
|
|
46
|
+
|
|
47
|
+
* http://github.com/sciruby/sciruby/wiki/Contributor-Agreement
|
|
48
|
+
|
|
49
|
+
-----
|
|
50
|
+
|
|
51
|
+
Copyright (c) 2010 - 2013, Rodrigo Botafogo and Ruby Science Foundation
|
|
52
|
+
All rights reserved.
|
|
53
|
+
|
|
54
|
+
Redistribution and use in source and binary forms, with or without modification, are permitted
|
|
55
|
+
provided that the following conditions are met:
|
|
56
|
+
|
|
57
|
+
* Redistributions of source code must retain the above copyright notice, this list of conditions
|
|
58
|
+
and the following disclaimer.
|
|
59
|
+
|
|
60
|
+
* Redistributions in binary form must reproduce the above copyright notice, this list of
|
|
61
|
+
conditions and the following disclaimer in the documentation and/or other materials provided
|
|
62
|
+
with the distribution.
|
|
63
|
+
|
|
64
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
|
|
65
|
+
EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
|
66
|
+
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
|
|
67
|
+
THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
68
|
+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
|
|
69
|
+
OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
70
|
+
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
71
|
+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
72
|
+
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
73
|
+
##########################################################################################
|
data/README.md
ADDED
|
@@ -0,0 +1,140 @@
|
|
|
1
|
+
Announcement
|
|
2
|
+
============
|
|
3
|
+
|
|
4
|
+
MDArray-sol version 0.1.0 has ben release. MDArray-sol, Sol for short, is a front-end
|
|
5
|
+
platform for desktop application development based on the proprietary (yet free for
|
|
6
|
+
open source) jxBrowser - https://www.teamdev.com/jxbrowser, a Chromium-based browser.
|
|
7
|
+
|
|
8
|
+
In a sense, Sol is similar to Opal in that it allows Ruby developers to code for the
|
|
9
|
+
browser; however, differently from Opal, Sol does not compile its code to javascript,
|
|
10
|
+
it implements a DSL that interfaces with javascript through jxBrowser java interface,
|
|
11
|
+
more in line with what is provided by the javascript node-webkit, now called NW.js.
|
|
12
|
+
To the Ruby developer, no javascript is ever required. Also, since there is no
|
|
13
|
+
compilation there is no need to 'send' data from Ruby to Javascript. Data in Ruby,
|
|
14
|
+
for instance, in a Ruby array or hash, is made available directly to the browser.
|
|
15
|
+
|
|
16
|
+
This is an initial version that focus on the integration of Ruby with the D3.js library.
|
|
17
|
+
In order to test this integration we have implemented many of the examples of the
|
|
18
|
+
excellent and highly recommended book by Scott Murray, "Interactive Data Visualization
|
|
19
|
+
for the Web". As can be seen in the examples directory and on the MDArray-sol wiki at
|
|
20
|
+
https://github.com/rbotafogo/mdarray-sol/wiki, quite complex behaviour is already
|
|
21
|
+
possible in this version.
|
|
22
|
+
|
|
23
|
+
This version was tested on Cygwin, Windows and Linux64. It has not yet been tested on
|
|
24
|
+
Linux32 nor Mac.
|
|
25
|
+
|
|
26
|
+
Bellow is an example of the integration of D3.js with Ruby that plots the US States map:
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
require 'json'
|
|
30
|
+
require 'mdarray-sol'
|
|
31
|
+
|
|
32
|
+
class Map
|
|
33
|
+
|
|
34
|
+
attr_reader :path
|
|
35
|
+
attr_reader :svg
|
|
36
|
+
attr_reader :us_states
|
|
37
|
+
|
|
38
|
+
#------------------------------------------------------------------------------------
|
|
39
|
+
# @param width [Number]: width of the chart
|
|
40
|
+
# @param height [Number]: height of the chart
|
|
41
|
+
#------------------------------------------------------------------------------------
|
|
42
|
+
|
|
43
|
+
def initialize(width, height)
|
|
44
|
+
|
|
45
|
+
@width = width
|
|
46
|
+
@height = height
|
|
47
|
+
|
|
48
|
+
# Create svg for the map
|
|
49
|
+
@svg = $d3.select("body")
|
|
50
|
+
.append("svg")
|
|
51
|
+
.attr("width", @width)
|
|
52
|
+
.attr("height", @height)
|
|
53
|
+
|
|
54
|
+
end
|
|
55
|
+
|
|
56
|
+
#------------------------------------------------------------------------------------
|
|
57
|
+
# Parses a file in GeoJson format and saves it as @us_states
|
|
58
|
+
# @param filename [String] the name of the file to parse
|
|
59
|
+
#------------------------------------------------------------------------------------
|
|
60
|
+
|
|
61
|
+
def json(filename)
|
|
62
|
+
|
|
63
|
+
dir = File.expand_path(File.dirname(__FILE__))
|
|
64
|
+
file_name = dir + "/#{filename}"
|
|
65
|
+
file = File.read(file_name)
|
|
66
|
+
|
|
67
|
+
# parse the json file
|
|
68
|
+
@us_states = JSON.parse(file)
|
|
69
|
+
|
|
70
|
+
end
|
|
71
|
+
|
|
72
|
+
#------------------------------------------------------------------------------------
|
|
73
|
+
#
|
|
74
|
+
#------------------------------------------------------------------------------------
|
|
75
|
+
|
|
76
|
+
def plot(projection)
|
|
77
|
+
|
|
78
|
+
proj = projection
|
|
79
|
+
.translate([@width/2, @height/2])
|
|
80
|
+
.scale(500)
|
|
81
|
+
|
|
82
|
+
@path = $d3.geo.path[].projection(proj);
|
|
83
|
+
|
|
84
|
+
@svg.selectAll("path")
|
|
85
|
+
.data(@us_states["features"])
|
|
86
|
+
.enter[]
|
|
87
|
+
.append("path")
|
|
88
|
+
.attr("d", @path)
|
|
89
|
+
.style("fill", "steelblue")
|
|
90
|
+
|
|
91
|
+
end
|
|
92
|
+
|
|
93
|
+
end
|
|
94
|
+
|
|
95
|
+
map = Map.new(500, 500)
|
|
96
|
+
map.json("us-states.json")
|
|
97
|
+
map.plot($d3.geo.albersUsa[])
|
|
98
|
+
|
|
99
|
+
|
|
100
|
+

|
|
101
|
+
|
|
102
|
+
|
|
103
|
+
LICENSE
|
|
104
|
+
=======
|
|
105
|
+
|
|
106
|
+
MDArray-sol is distributed with the BSD 2-clause license; however, MDArray-sol uses JxBrowser
|
|
107
|
+
http://www.teamdev.com/jxbrowser, which is a proprietary software. The use of JxBrowser
|
|
108
|
+
is governed by JxBrowser Product Licence Agreement
|
|
109
|
+
http://www.teamdev.com/jxbrowser-licence-agreement. If you would like to use JxBrowser
|
|
110
|
+
in your development, please contact TeamDev.
|
|
111
|
+
|
|
112
|
+
|
|
113
|
+
MDArray-sol main properties are:
|
|
114
|
+
============================
|
|
115
|
+
|
|
116
|
+
+ Integration of Ruby and Javascript transparantly to the Ruby developer
|
|
117
|
+
+ Data sharing between Ruby and Javascript
|
|
118
|
+
+ Embedded browser
|
|
119
|
+
|
|
120
|
+
MDArray-sol installation and download:
|
|
121
|
+
==================================
|
|
122
|
+
|
|
123
|
+
+ Install Jruby
|
|
124
|
+
+ jruby –S gem install mdarray-sol
|
|
125
|
+
|
|
126
|
+
MDArray-sol Homepages:
|
|
127
|
+
==================
|
|
128
|
+
|
|
129
|
+
+ http://rubygems.org/gems/mdarray-sol
|
|
130
|
+
+ https://github.com/rbotafogo/mdarray-sol/wiki
|
|
131
|
+
|
|
132
|
+
Contributors:
|
|
133
|
+
=============
|
|
134
|
+
Contributors are welcome.
|
|
135
|
+
|
|
136
|
+
|
|
137
|
+
MDArray-sol History:
|
|
138
|
+
================
|
|
139
|
+
|
|
140
|
+
+ 2017/01/06: Initial release
|
data/README.md~
ADDED
|
@@ -0,0 +1,290 @@
|
|
|
1
|
+
Announcement
|
|
2
|
+
============
|
|
3
|
+
|
|
4
|
+
MDArray version 0.5.5 has Just been released. MDArray is a multi dimensional array implemented
|
|
5
|
+
for JRuby inspired by NumPy (www.numpy.org) and Masahiro Tanaka´s Narray (narray.rubyforge.org).
|
|
6
|
+
MDArray stands on the shoulders of Java-NetCDF and Parallel Colt. At this point MDArray has
|
|
7
|
+
libraries for linear algebra, mathematical, trigonometric and descriptive statistics methods.
|
|
8
|
+
|
|
9
|
+
NetCDF-Java Library is a Java interface to NetCDF files, as well as to many other types of
|
|
10
|
+
scientific data formats. It is developed and distributed by Unidata (http://www.unidata.ucar.edu).
|
|
11
|
+
|
|
12
|
+
Parallel Colt (https://sites.google.com/site/piotrwendykier/software/parallelcolt is a
|
|
13
|
+
multithreaded version of Colt (http://acs.lbl.gov/software/colt/). Colt provides a set of
|
|
14
|
+
Open Source Libraries for High Performance Scientific and Technical Computing in Java.
|
|
15
|
+
Scientific and technical computing is characterized by demanding problem sizes and a need for
|
|
16
|
+
high performance at reasonably small memory footprint.
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
What´s new:
|
|
20
|
+
===========
|
|
21
|
+
|
|
22
|
+
Class MDMatrix and Linear Algebra Methods
|
|
23
|
+
-----------------------------------------
|
|
24
|
+
|
|
25
|
+
This version of MDArray introduces class MDMatrix. MDMatrix is a matrix class wrapping many
|
|
26
|
+
linear algebra methods from Parallel Colt (see below). MDMatrix support only the following
|
|
27
|
+
types: i) int; ii) long; iii) float and iv) double.
|
|
28
|
+
|
|
29
|
+
Differently from other libraries, in which matrix is a subclass of array, MDMatrix is a
|
|
30
|
+
twin class of MDArray. MDMatrix is a twin class of MDArray as every time an MDMatrix is
|
|
31
|
+
instantiated, an MDArray class is also instantiated. In reality, there is only one backing
|
|
32
|
+
store that can be viewed by either MDMatrix or MDArray.
|
|
33
|
+
|
|
34
|
+
Creation of MDMatrix follows the same API as MDArray API. For instance, creating a double
|
|
35
|
+
square matrix of size 5 x 5 can be done by:
|
|
36
|
+
|
|
37
|
+
matrix = MDMatrix.double([5, 5], [2.0, 0.0, 8.0, 6.0, 0.0,\
|
|
38
|
+
1.0, 6.0, 0.0, 1.0, 7.0,\
|
|
39
|
+
5.0, 0.0, 7.0, 4.0, 0.0,\
|
|
40
|
+
7.0, 0.0, 8.0, 5.0, 0.0,\
|
|
41
|
+
0.0, 10.0, 0.0, 0.0, 7.0])
|
|
42
|
+
|
|
43
|
+
Creating an int matrix filled with zero can be done by:
|
|
44
|
+
|
|
45
|
+
matrix = MDMatrix.int([4, 3])
|
|
46
|
+
|
|
47
|
+
MDMatrix also supports creation based on methods such as fromfunction, linspace, init_with,
|
|
48
|
+
arange, typed_arange and ones:
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
array = MDArray.typed_arange("double", 0, 15)
|
|
52
|
+
array = MDMatrix.fromfunction("double", [4, 4]) { |x, y| x + y }
|
|
53
|
+
|
|
54
|
+
An MDMatrix can also be created from an MDArray as follows:
|
|
55
|
+
|
|
56
|
+
d2 = MDArray.typed_arange("double", 0, 15)
|
|
57
|
+
double_matrix = MDMatrix.from_mdarray(d2)
|
|
58
|
+
|
|
59
|
+
An MDMatrix can only be created from MDArrays of one, two or three dimensions. However,
|
|
60
|
+
one can take a view from an MDArray to create an MDMatrix, as long as the view is at most
|
|
61
|
+
three dimensional:
|
|
62
|
+
|
|
63
|
+
# Instantiate an MDArray and shape it with 4 dimensions
|
|
64
|
+
> d1 = MDArray.typed_arange("double", 0, 420)
|
|
65
|
+
> d1.reshape!([5, 4, 3, 7])
|
|
66
|
+
# slice the array, getting a three dimensional array and from that, make a matrix
|
|
67
|
+
> matrix = MDMatrix.from_mdarray(d1.slice(0, 0))
|
|
68
|
+
# get a region from the array, with the first two dimensions of size 0, reduce it to a
|
|
69
|
+
# size two array and then build a two dimensional matrix
|
|
70
|
+
> matrix = MDMatrix.from_mdarray(d1.region(:spec => "0:0, 0:0, 0:2, 0:6").reduce)
|
|
71
|
+
|
|
72
|
+
printing the above two dimensional matrix gives us:
|
|
73
|
+
|
|
74
|
+
> matrix.print
|
|
75
|
+
3 x 7 matrix
|
|
76
|
+
0,00000 1,00000 2,00000 3,00000 4,00000 5,00000 6,00000
|
|
77
|
+
7,00000 8,00000 9,00000 10,0000 11,0000 12,0000 13,0000
|
|
78
|
+
14,0000 15,0000 16,0000 17,0000 18,0000 19,0000 20,0000
|
|
79
|
+
|
|
80
|
+
Every MDMatrix instance has a twin MDArray instance that uses the same backing store. This
|
|
81
|
+
allows the user to treat the data as either a matrix or an array and use methods either from
|
|
82
|
+
matrix or array. The above matrix can be printed as an array:
|
|
83
|
+
|
|
84
|
+
|
|
85
|
+
> matrix.mdarray.print
|
|
86
|
+
[[0.00 1.00 2.00 3.00 4.00 5.00 6.00]
|
|
87
|
+
[7.00 8.00 9.00 10.00 11.00 12.00 13.00]
|
|
88
|
+
[14.00 15.00 16.00 17.00 18.00 19.00 20.00]]
|
|
89
|
+
|
|
90
|
+
With an MDMatrix, many linear algebra methods can be easily calculated:
|
|
91
|
+
|
|
92
|
+
# basic operations on matrix can be done, such as, ‘+’, ‘-‘, ´*’, ‘/’
|
|
93
|
+
# make a 4 x 4 matrix and fill it with ´double´ 2.5
|
|
94
|
+
> a = MDMatrix.double([4, 4])
|
|
95
|
+
> a.fill(2.5)
|
|
96
|
+
> make a 4 x 4 matrix ´b´ from a given function (block)
|
|
97
|
+
> b = MDMatrix.fromfunction("double", [4, 4]) { |x, y| x + y }
|
|
98
|
+
# add both matrices
|
|
99
|
+
> c = a + b
|
|
100
|
+
# multiply by scalar
|
|
101
|
+
> c = a * 2
|
|
102
|
+
# divide two matrices. Matrix ´b´ has to be non-singular, otherwise an exception is
|
|
103
|
+
# raised.
|
|
104
|
+
# generate a non-singular matrix from a given matrix
|
|
105
|
+
> b.generate_non_singular!
|
|
106
|
+
> c = a / b
|
|
107
|
+
|
|
108
|
+
Linear algebra methods:
|
|
109
|
+
|
|
110
|
+
# create a matrix with the given data
|
|
111
|
+
> pos = MDArray.double([3, 3], [4, 12, -16, 12, 37, -43, -16, -43, 98])
|
|
112
|
+
> matrix = MDMatrix.from_mdarray(pos)
|
|
113
|
+
# Cholesky decomposition from wikipedia example
|
|
114
|
+
> chol = matrix.chol
|
|
115
|
+
> assert_equal(2, chol[0, 0])
|
|
116
|
+
> assert_equal(6, chol[1, 0])
|
|
117
|
+
> assert_equal(-8, chol[2, 0])
|
|
118
|
+
> assert_equal(5, chol[2, 1])
|
|
119
|
+
> assert_equal(3, chol[2, 2])
|
|
120
|
+
|
|
121
|
+
All other linear algebra methods are called the same way.
|
|
122
|
+
|
|
123
|
+
|
|
124
|
+
MDArray and SciRuby:
|
|
125
|
+
====================
|
|
126
|
+
|
|
127
|
+
MDArray subscribes fully to the SciRuby Manifesto (http://sciruby.com/).
|
|
128
|
+
|
|
129
|
+
“Ruby has for some time had no equivalent to the beautifully constructed NumPy, SciPy, and
|
|
130
|
+
matplotlib libraries for Python.
|
|
131
|
+
|
|
132
|
+
We believe that the time for a Ruby science and visualization package has come. Sometimes
|
|
133
|
+
when a solution of sugar and water becomes super-saturated, from it precipitates a pure,
|
|
134
|
+
delicious, and diabetes-inducing crystal of sweetness, induced by no more than the tap of a
|
|
135
|
+
finger. So is occurring now, we believe, with numeric and visualization libraries for Ruby.”
|
|
136
|
+
|
|
137
|
+
MDArray main properties are:
|
|
138
|
+
============================
|
|
139
|
+
|
|
140
|
+
+ Homogeneous multidimensional array, a table of elements (usually numbers), all of the
|
|
141
|
+
same type, indexed by a tuple of positive integers;
|
|
142
|
+
+ Support for many linear algebra methods (see bellow);
|
|
143
|
+
+ Easy calculation for large numerical multi dimensional arrays;
|
|
144
|
+
+ Basic types are: boolean, byte, short, int, long, float, double, string, structure;
|
|
145
|
+
+ Based on JRuby, which allows importing Java libraries;
|
|
146
|
+
+ Operator: +,-,*,/,%,**, >, >=, etc.;
|
|
147
|
+
+ Functions: abs, ceil, floor, truncate, is_zero, square, cube, fourth;
|
|
148
|
+
+ Binary Operators: &, |, ^, ~ (binary_ones_complement), <<, >>;
|
|
149
|
+
+ Ruby Math functions: acos, acosh, asin, asinh, atan, atan2, atanh, cbrt, cos, erf, exp,
|
|
150
|
+
gamma, hypot, ldexp, log, log10, log2, sin, sinh, sqrt, tan, tanh, neg;
|
|
151
|
+
+ Boolean operations on boolean arrays: and, or, not;
|
|
152
|
+
+ Fast descriptive statistics from Parallel Colt (complete list found bellow);
|
|
153
|
+
+ Easy manipulation of arrays: reshape, reduce dimension, permute, section, slice, etc.;
|
|
154
|
+
+ Support for reading and writing NetCDF-3 files;
|
|
155
|
+
+ Reading of two dimensional arrays from CSV files (mainly for debugging and simple testing
|
|
156
|
+
purposes);
|
|
157
|
+
+ StatList: a list that can grow/shrink and that can compute Parallel Colt descriptive
|
|
158
|
+
statistics;
|
|
159
|
+
+ Experimental lazy evaluation (still slower than eager evaluation).
|
|
160
|
+
|
|
161
|
+
Supported linear algebra methods:
|
|
162
|
+
=================================
|
|
163
|
+
|
|
164
|
+
+ backwardSolve: Solves the upper triangular system U*x=b;
|
|
165
|
+
+ chol: Constructs and returns the cholesky-decomposition of the given matrix.
|
|
166
|
+
+ cond: Returns the condition of matrix A, which is the ratio of largest to smallest singular value.
|
|
167
|
+
+ det: Returns the determinant of matrix A.
|
|
168
|
+
+ eig: Constructs and returns the Eigenvalue-decomposition of the given matrix.
|
|
169
|
+
+ forwardSolve: Solves the lower triangular system L*x=b;
|
|
170
|
+
+ inverse: Returns the inverse or pseudo-inverse of matrix A.
|
|
171
|
+
+ kron: Computes the Kronecker product of two real matrices.
|
|
172
|
+
+ lu: Constructs and returns the LU-decomposition of the given matrix.
|
|
173
|
+
+ mult: Inner product of two vectors; Sum(x[i] * y[i]).
|
|
174
|
+
+ mult: Linear algebraic matrix-vector multiplication; z = A * y.
|
|
175
|
+
+ mult: Linear algebraic matrix-matrix multiplication; C = A x B.
|
|
176
|
+
+ multOuter: Outer product of two vectors; Sets A[i,j] = x[i] * y[j].
|
|
177
|
+
+ norm1: Returns the one-norm of vector x, which is Sum(abs(x[i])).
|
|
178
|
+
+ norm1: Returns the one-norm of matrix A, which is the maximum absolute column sum.
|
|
179
|
+
+ norm2: Returns the two-norm (aka euclidean norm) of vector x; equivalent to Sqrt(mult(x,x)).
|
|
180
|
+
+ norm2: Returns the two-norm of matrix A, which is the maximum singular value; obtained from SVD.
|
|
181
|
+
+ normF: Returns the Frobenius norm of matrix A, which is Sqrt(Sum(A[i]2)).
|
|
182
|
+
+ normF: Returns the Frobenius norm of matrix A, which is Sqrt(Sum(A[i,j]2)).
|
|
183
|
+
+ normInfinity: Returns the infinity norm of vector x, which is Max(abs(x[i])).
|
|
184
|
+
+ normInfinity: Returns the infinity norm of matrix A, which is the maximum absolute row sum.
|
|
185
|
+
+ pow: Linear algebraic matrix power; B = Ak <==> B = A*A*...*A.
|
|
186
|
+
+ qr: Constructs and returns the QR-decomposition of the given matrix.
|
|
187
|
+
+ rank: Returns the effective numerical rank of matrix A, obtained from Singular Value Decomposition.
|
|
188
|
+
+ solve: Solves A*x = b.
|
|
189
|
+
+ solve: Solves A*X = B.
|
|
190
|
+
+ solveTranspose: Solves X*A = B, which is also A'*X' = B'.
|
|
191
|
+
+ svd: Constructs and returns the SingularValue-decomposition of the given matrix.
|
|
192
|
+
+ trace: Returns the sum of the diagonal elements of matrix A; Sum(A[i,i]).
|
|
193
|
+
+ trapezoidalLower: Modifies the matrix to be a lower trapezoidal matrix.
|
|
194
|
+
+ vectorNorm2: Returns the two-norm (aka euclidean norm) of vector X.vectorize();
|
|
195
|
+
+ xmultOuter: Outer product of two vectors; Returns a matrix with A[i,j] = x[i] * y[j].
|
|
196
|
+
+ xpowSlow: Linear algebraic matrix power; B = Ak <==> B = A*A*...*A.
|
|
197
|
+
|
|
198
|
+
Properties´ methods tested on matrices:
|
|
199
|
+
=======================================
|
|
200
|
+
|
|
201
|
+
+ density: Returns the matrix's fraction of non-zero cells; A.cardinality() / A.size().
|
|
202
|
+
+ generate_non_singular!: Modifies the given square matrix A such that it is diagonally dominant by row and column, hence non-singular, hence invertible.
|
|
203
|
+
+ diagonal?: A matrix A is diagonal if A[i,j] == 0 whenever i != j.
|
|
204
|
+
+ diagonally_dominant_by_column?: A matrix A is diagonally dominant by column if the absolute value of each diagonal element is larger than the sum of the absolute values of the off-diagonal elements in the corresponding column.
|
|
205
|
+
+ diagonally_dominant_by_row?: A matrix A is diagonally dominant by row if the absolute value of each diagonal element is larger than the sum of the absolute values of the off-diagonal elements in the corresponding row.
|
|
206
|
+
+ identity?: A matrix A is an identity matrix if A[i,i] == 1 and all other cells are zero.
|
|
207
|
+
+ lower_bidiagonal?: A matrix A is lower bidiagonal if A[i,j]==0 unless i==j || i==j+1.
|
|
208
|
+
+ lower_triangular?: A matrix A is lower triangular if A[i,j]==0 whenever i < j.
|
|
209
|
+
+ nonnegative?: A matrix A is non-negative if A[i,j] >= 0 holds for all cells.
|
|
210
|
+
+ orthogonal?: A square matrix A is orthogonal if A*transpose(A) = I.
|
|
211
|
+
+ positive?: A matrix A is positive if A[i,j] > 0 holds for all cells.
|
|
212
|
+
+ singular?: A matrix A is singular if it has no inverse, that is, iff det(A)==0.
|
|
213
|
+
+ skew_symmetric?: A square matrix A is skew-symmetric if A = -transpose(A), that is A[i,j] == -A[j,i].
|
|
214
|
+
+ square?: A matrix A is square if it has the same number of rows and columns.
|
|
215
|
+
+ strictly_lower_triangular?: A matrix A is strictly lower triangular if A[i,j]==0 whenever i <= j.
|
|
216
|
+
+ strictly_triangular?: A matrix A is strictly triangular if it is triangular and its diagonal elements all equal 0.
|
|
217
|
+
+ strictly_upper_triangular?: A matrix A is strictly upper triangular if A[i,j]==0 whenever i >= j.
|
|
218
|
+
+ symmetric?: A matrix A is symmetric if A = tranpose(A), that is A[i,j] == A[j,i].
|
|
219
|
+
+ triangular?: A matrix A is triangular iff it is either upper or lower triangular.
|
|
220
|
+
+ tridiagonal?: A matrix A is tridiagonal if A[i,j]==0 whenever Math.abs(i-j) > 1.
|
|
221
|
+
+ unit_triangular?: A matrix A is unit triangular if it is triangular and its diagonal elements all equal 1.
|
|
222
|
+
+ upper_bidiagonal?: A matrix A is upper bidiagonal if A[i,j]==0 unless i==j || i==j-1.
|
|
223
|
+
+ upper_triangular?: A matrix A is upper triangular if A[i,j]==0 whenever i > j.
|
|
224
|
+
+ zero?: A matrix A is zero if all its cells are zero.
|
|
225
|
+
+ lower_bandwidth: The lower bandwidth of a square matrix A is the maximum i-j for which A[i,j] is nonzero and i > j.
|
|
226
|
+
+ semi_bandwidth: Returns the semi-bandwidth of the given square matrix A.
|
|
227
|
+
+ upper_bandwidth: The upper bandwidth of a square matrix A is the maximum j-i for which A[i,j] is nonzero and j > i.
|
|
228
|
+
|
|
229
|
+
Descriptive statistics methods imported from Parallel Colt:
|
|
230
|
+
===========================================================
|
|
231
|
+
|
|
232
|
+
+ auto_correlation, correlation, covariance, durbin_watson, frequencies, geometric_mean,
|
|
233
|
+
+ harmonic_mean, kurtosis, lag1, max, mean, mean_deviation, median, min, moment, moment3,
|
|
234
|
+
+ moment4, pooled_mean, pooled_variance, product, quantile, quantile_inverse,
|
|
235
|
+
+ rank_interpolated, rms, sample_covariance, sample_kurtosis, sample_kurtosis_standard_error,
|
|
236
|
+
+ sample_skew, sample_skew_standard_error, sample_standard_deviation, sample_variance,
|
|
237
|
+
+ sample_weighted_variance, skew, split, standard_deviation, standard_error, sum,
|
|
238
|
+
+ sum_of_inversions, sum_of_logarithms, sum_of_powers, sum_of_power_deviations,
|
|
239
|
+
+ sum_of_squares, sum_of_squared_deviations, trimmed_mean, variance, weighted_mean,
|
|
240
|
+
+ weighted_rms, weighted_sums, winsorized_mean.
|
|
241
|
+
|
|
242
|
+
Double and Float methods from Parallel Colt:
|
|
243
|
+
============================================
|
|
244
|
+
|
|
245
|
+
+ acos, asin, atan, atan2, ceil, cos, exp, floor, greater, IEEEremainder, inv, less, lg,
|
|
246
|
+
+ log, log2, rint, sin, sqrt, tan.
|
|
247
|
+
|
|
248
|
+
Double, Float, Long and Int methods from Parallel Colt:
|
|
249
|
+
=======================================================
|
|
250
|
+
|
|
251
|
+
+ abs, compare, div, divNeg, equals, isEqual (is_equal), isGreater (is_greater),
|
|
252
|
+
+ isles (is_less), max, min, minus, mod, mult, multNeg (mult_neg), multSquare (mult_square),
|
|
253
|
+
+ neg, plus (add), plusAbs (plus_abs), pow (power), sign, square.
|
|
254
|
+
|
|
255
|
+
Long and Int methods from Parallel Colt
|
|
256
|
+
=======================================
|
|
257
|
+
|
|
258
|
+
+ and, dec, factorial, inc, not, or, shiftLeft (shift_left), shiftRightSigned
|
|
259
|
+
(shift_right_signed), shiftRightUnsigned (shift_right_unsigned), xor.
|
|
260
|
+
|
|
261
|
+
MDArray installation and download:
|
|
262
|
+
==================================
|
|
263
|
+
|
|
264
|
+
+ Install Jruby
|
|
265
|
+
+ jruby –S gem install mdarray
|
|
266
|
+
|
|
267
|
+
MDArray Homepages:
|
|
268
|
+
==================
|
|
269
|
+
|
|
270
|
+
+ http://rubygems.org/gems/mdarray
|
|
271
|
+
+ https://github.com/rbotafogo/mdarray/wiki
|
|
272
|
+
|
|
273
|
+
Contributors:
|
|
274
|
+
=============
|
|
275
|
+
Contributors are welcome.
|
|
276
|
+
|
|
277
|
+
MDArray History:
|
|
278
|
+
================
|
|
279
|
+
|
|
280
|
+
+ 14/11/2013: Version 0.5.5 - Support for linear algebra methods
|
|
281
|
+
+ 07/08/2013: Version 0.5.4 - Support for reading and writing NetCDF-3 files
|
|
282
|
+
+ 24/06/2013: Version 0.5.3 – Over 90% Performance improvements for methods imported
|
|
283
|
+
from Parallel Colt and over 40% performance improvements for all other methods
|
|
284
|
+
(implemented in Ruby);
|
|
285
|
+
+ 16/05/2013: Version 0.5.0 - All loops transferred to Java with over 50% performance
|
|
286
|
+
improvements. Descriptive statistics from Parallel Colt;
|
|
287
|
+
+ 19/04/2013: Version 0.4.3 - Fixes a simple, but fatal bug in 0.4.2. No new features;
|
|
288
|
+
+ 17/04/2013: Version 0.4.2 - Adds simple statistics and boolean operators;
|
|
289
|
+
+ 05/04/2013: Version 0.4.0 – Initial release.
|
|
290
|
+
|