rubyvis 0.1.1 → 0.1.2
Sign up to get free protection for your applications and to get access to all the features.
- data.tar.gz.sig +0 -0
- data/History.txt +8 -1
- data/Manifest.txt +100 -416
- data/README.txt +5 -2
- data/examples/barley/barley.rb +79 -0
- data/examples/crimea/crimea.rb +37 -0
- data/examples/crimea/crimea_line.rb +47 -0
- data/examples/second.rb +2 -2
- data/examples/third.rb +16 -0
- data/lib/rubyvis.rb +2 -1
- data/lib/rubyvis/color/color.rb +170 -169
- data/lib/rubyvis/color/colors.rb +4 -4
- data/lib/rubyvis/color/ramp.rb +1 -0
- data/lib/rubyvis/format.rb +2 -2
- data/lib/rubyvis/format/date.rb +9 -2
- data/lib/rubyvis/format/number.rb +3 -3
- data/lib/rubyvis/internals.rb +13 -13
- data/lib/rubyvis/javascript_behaviour.rb +3 -3
- data/lib/rubyvis/label.rb +1 -0
- data/lib/rubyvis/mark.rb +178 -169
- data/lib/rubyvis/mark/anchor.rb +4 -4
- data/lib/rubyvis/mark/area.rb +93 -5
- data/lib/rubyvis/mark/bar.rb +1 -1
- data/lib/rubyvis/mark/label.rb +2 -2
- data/lib/rubyvis/mark/line.rb +11 -5
- data/lib/rubyvis/mark/panel.rb +13 -11
- data/lib/rubyvis/mark/rule.rb +2 -2
- data/lib/rubyvis/property.rb +3 -2
- data/lib/rubyvis/scale.rb +4 -4
- data/lib/rubyvis/scale/linear.rb +2 -2
- data/lib/rubyvis/scale/ordinal.rb +41 -41
- data/lib/rubyvis/scale/quantitative.rb +212 -200
- data/lib/rubyvis/scene/svg_bar.rb +21 -21
- data/lib/rubyvis/scene/svg_label.rb +34 -34
- data/lib/rubyvis/scene/svg_line.rb +185 -0
- data/lib/rubyvis/scene/svg_panel.rb +36 -30
- data/lib/rubyvis/scene/svg_rule.rb +18 -19
- data/lib/rubyvis/scene/svg_scene.rb +33 -30
- data/lib/rubyvis/sceneelement.rb +5 -1
- data/lib/rubyvis/transform.rb +2 -2
- data/spec/mark_spec.rb +6 -6
- data/spec/scale_linear_datetime_spec.rb +52 -0
- data/spec/scale_linear_spec.rb +0 -10
- data/vendor/{protovis-r3.3.js → protovis/protovis-r3.3.js} +0 -0
- data/vendor/{src → protovis/src}/behavior/Behavior.js +0 -0
- data/vendor/{src → protovis/src}/behavior/Drag.js +0 -0
- data/vendor/{src → protovis/src}/behavior/Pan.js +0 -0
- data/vendor/{src → protovis/src}/behavior/Point.js +0 -0
- data/vendor/{src → protovis/src}/behavior/Resize.js +0 -0
- data/vendor/{src → protovis/src}/behavior/Select.js +0 -0
- data/vendor/{src → protovis/src}/behavior/Zoom.js +0 -0
- data/vendor/{src → protovis/src}/color/Color.js +0 -0
- data/vendor/{src → protovis/src}/color/Colors.js +0 -0
- data/vendor/{src → protovis/src}/color/Ramp.js +0 -0
- data/vendor/{src → protovis/src}/data/Arrays.js +0 -0
- data/vendor/{src → protovis/src}/data/Dom.js +0 -0
- data/vendor/{src → protovis/src}/data/Flatten.js +0 -0
- data/vendor/{src → protovis/src}/data/Histogram.js +0 -0
- data/vendor/{src → protovis/src}/data/LinearScale.js +0 -0
- data/vendor/{src → protovis/src}/data/LogScale.js +0 -0
- data/vendor/{src → protovis/src}/data/Nest.js +0 -0
- data/vendor/{src → protovis/src}/data/Numbers.js +0 -0
- data/vendor/{src → protovis/src}/data/Objects.js +0 -0
- data/vendor/{src → protovis/src}/data/OrdinalScale.js +0 -0
- data/vendor/{src → protovis/src}/data/QuantileScale.js +0 -0
- data/vendor/{src → protovis/src}/data/QuantitativeScale.js +0 -0
- data/vendor/{src → protovis/src}/data/RootScale.js +0 -0
- data/vendor/{src → protovis/src}/data/Scale.js +0 -0
- data/vendor/{src → protovis/src}/data/Transform.js +0 -0
- data/vendor/{src → protovis/src}/data/Tree.js +0 -0
- data/vendor/{src → protovis/src}/data/Vector.js +0 -0
- data/vendor/{src → protovis/src}/geo/Geo.js +0 -0
- data/vendor/{src → protovis/src}/geo/GeoScale.js +0 -0
- data/vendor/{src → protovis/src}/geo/LatLng.js +0 -0
- data/vendor/{src → protovis/src}/geo/Projection.js +0 -0
- data/vendor/{src → protovis/src}/geo/Projections.js +0 -0
- data/vendor/{src → protovis/src}/lang/Array.js +0 -0
- data/vendor/{src → protovis/src}/lang/init.js +0 -0
- data/vendor/{src → protovis/src}/layout/Arc.js +0 -0
- data/vendor/{src → protovis/src}/layout/Bullet.js +0 -0
- data/vendor/{src → protovis/src}/layout/Cluster.js +0 -0
- data/vendor/{src → protovis/src}/layout/Force.js +0 -0
- data/vendor/{src → protovis/src}/layout/Grid.js +0 -0
- data/vendor/{src → protovis/src}/layout/Hierarchy.js +0 -0
- data/vendor/{src → protovis/src}/layout/Horizon.js +0 -0
- data/vendor/{src → protovis/src}/layout/Indent.js +0 -0
- data/vendor/{src → protovis/src}/layout/Layout.js +0 -0
- data/vendor/{src → protovis/src}/layout/Matrix.js +0 -0
- data/vendor/{src → protovis/src}/layout/Network.js +0 -0
- data/vendor/{src → protovis/src}/layout/Pack.js +0 -0
- data/vendor/{src → protovis/src}/layout/Partition.js +0 -0
- data/vendor/{src → protovis/src}/layout/Rollup.js +0 -0
- data/vendor/{src → protovis/src}/layout/Stack.js +0 -0
- data/vendor/{src → protovis/src}/layout/Tree.js +0 -0
- data/vendor/{src → protovis/src}/layout/Treemap.js +0 -0
- data/vendor/{src → protovis/src}/mark/Anchor.js +0 -0
- data/vendor/{src → protovis/src}/mark/Area.js +0 -0
- data/vendor/{src → protovis/src}/mark/Bar.js +0 -0
- data/vendor/{src → protovis/src}/mark/Dot.js +0 -0
- data/vendor/{src → protovis/src}/mark/Ease.js +0 -0
- data/vendor/{src → protovis/src}/mark/Image.js +0 -0
- data/vendor/{src → protovis/src}/mark/Label.js +0 -0
- data/vendor/{src → protovis/src}/mark/Line.js +0 -0
- data/vendor/{src → protovis/src}/mark/Mark.js +0 -0
- data/vendor/{src → protovis/src}/mark/Panel.js +0 -0
- data/vendor/{src → protovis/src}/mark/Rule.js +0 -0
- data/vendor/{src → protovis/src}/mark/Transient.js +0 -0
- data/vendor/{src → protovis/src}/mark/Transition.js +0 -0
- data/vendor/{src → protovis/src}/mark/Wedge.js +0 -0
- data/vendor/{src → protovis/src}/physics/BoundConstraint.js +0 -0
- data/vendor/{src → protovis/src}/physics/ChargeForce.js +0 -0
- data/vendor/{src → protovis/src}/physics/CollisionConstraint.js +0 -0
- data/vendor/{src → protovis/src}/physics/Constraint.js +0 -0
- data/vendor/{src → protovis/src}/physics/DragForce.js +0 -0
- data/vendor/{src → protovis/src}/physics/Force.js +0 -0
- data/vendor/{src → protovis/src}/physics/Particle.js +0 -0
- data/vendor/{src → protovis/src}/physics/PositionConstraint.js +0 -0
- data/vendor/{src → protovis/src}/physics/Quadtree.js +0 -0
- data/vendor/{src → protovis/src}/physics/Simulation.js +0 -0
- data/vendor/{src → protovis/src}/physics/SpringForce.js +0 -0
- data/vendor/{src → protovis/src}/pv-internals.js +0 -0
- data/vendor/{src → protovis/src}/pv.js +0 -0
- data/vendor/{src → protovis/src}/scene/SvgArea.js +0 -0
- data/vendor/{src → protovis/src}/scene/SvgBar.js +0 -0
- data/vendor/{src → protovis/src}/scene/SvgCurve.js +0 -0
- data/vendor/{src → protovis/src}/scene/SvgDot.js +0 -0
- data/vendor/{src → protovis/src}/scene/SvgImage.js +0 -0
- data/vendor/{src → protovis/src}/scene/SvgLabel.js +0 -0
- data/vendor/{src → protovis/src}/scene/SvgLine.js +0 -0
- data/vendor/{src → protovis/src}/scene/SvgPanel.js +0 -0
- data/vendor/{src → protovis/src}/scene/SvgRule.js +0 -0
- data/vendor/{src → protovis/src}/scene/SvgScene.js +0 -0
- data/vendor/{src → protovis/src}/scene/SvgWedge.js +0 -0
- data/vendor/{src → protovis/src}/text/DateFormat.js +0 -0
- data/vendor/{src → protovis/src}/text/Format.js +0 -0
- data/vendor/{src → protovis/src}/text/NumberFormat.js +0 -0
- data/vendor/{src → protovis/src}/text/TimeFormat.js +0 -0
- metadata +132 -426
- metadata.gz.sig +2 -0
- data/examples/crimea-line.rb +0 -64
- data/vendor/FUTURE +0 -62
- data/vendor/Makefile +0 -138
- data/vendor/TODO +0 -22
- data/vendor/examples/antibiotics/antibiotics-scatter.html +0 -113
- data/vendor/examples/antibiotics/antibiotics.html +0 -140
- data/vendor/examples/antibiotics/antibiotics.js +0 -20
- data/vendor/examples/barley/barley.html +0 -102
- data/vendor/examples/barley/barley.js +0 -122
- data/vendor/examples/cars/cars.html +0 -90
- data/vendor/examples/cars/cars.js +0 -408
- data/vendor/examples/clock/clock.html +0 -91
- data/vendor/examples/crimea/crimea-grouped-bar.html +0 -65
- data/vendor/examples/crimea/crimea-line.html +0 -61
- data/vendor/examples/crimea/crimea-stacked-area.html +0 -61
- data/vendor/examples/crimea/crimea-stacked-bar.html +0 -60
- data/vendor/examples/crimea/crimea.html +0 -100
- data/vendor/examples/crimea/crimea.js +0 -33
- data/vendor/examples/downloadify/LICENSE.txt +0 -22
- data/vendor/examples/downloadify/download.png +0 -0
- data/vendor/examples/downloadify/downloadify.html +0 -57
- data/vendor/examples/downloadify/downloadify.min.js +0 -3
- data/vendor/examples/downloadify/downloadify.swf +0 -0
- data/vendor/examples/downloadify/swfobject.js +0 -4
- data/vendor/examples/ex.css +0 -17
- data/vendor/examples/eyes/eyes.html +0 -53
- data/vendor/examples/eyes/matrix.html +0 -44
- data/vendor/examples/flowers/flowers.html +0 -109
- data/vendor/examples/flowers/flowers.js +0 -154
- data/vendor/examples/group-stack/group-stack.html +0 -79
- data/vendor/examples/group-stack/headcount.js +0 -23
- data/vendor/examples/hotel/hotel.html +0 -76
- data/vendor/examples/hotel/hotel.js +0 -245
- data/vendor/examples/jobs/jobs.html +0 -71
- data/vendor/examples/jobs/jobs.js +0 -1024
- data/vendor/examples/jquery-1.4.2.min.js +0 -154
- data/vendor/examples/nba/nba.html +0 -83
- data/vendor/examples/nba/nba.js +0 -53
- data/vendor/examples/nba/nba2.html +0 -82
- data/vendor/examples/sankey/gdp2009.js +0 -184
- data/vendor/examples/sankey/sankey.html +0 -77
- data/vendor/examples/slider/cell.html +0 -112
- data/vendor/examples/slider/cell.js +0 -31
- data/vendor/examples/slider/horizon.html +0 -85
- data/vendor/examples/slider/jquery-ui-1.8rc3.custom.min.js +0 -71
- data/vendor/examples/slider/slider.html +0 -50
- data/vendor/examples/slider/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png +0 -0
- data/vendor/examples/slider/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png +0 -0
- data/vendor/examples/slider/ui-lightness/images/ui-bg_flat_10_000000_40x100.png +0 -0
- data/vendor/examples/slider/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png +0 -0
- data/vendor/examples/slider/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png +0 -0
- data/vendor/examples/slider/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
- data/vendor/examples/slider/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png +0 -0
- data/vendor/examples/slider/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png +0 -0
- data/vendor/examples/slider/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png +0 -0
- data/vendor/examples/slider/ui-lightness/images/ui-icons_222222_256x240.png +0 -2
- data/vendor/examples/slider/ui-lightness/images/ui-icons_228ef1_256x240.png +0 -2
- data/vendor/examples/slider/ui-lightness/images/ui-icons_ef8c08_256x240.png +0 -2
- data/vendor/examples/slider/ui-lightness/images/ui-icons_ffd27a_256x240.png +0 -2
- data/vendor/examples/slider/ui-lightness/images/ui-icons_ffffff_256x240.png +0 -2
- data/vendor/examples/slider/ui-lightness/jquery-ui-1.8rc3.custom.css +0 -302
- data/vendor/examples/tipsy/jquery.tipsy.js +0 -198
- data/vendor/examples/tipsy/tipsy-bar.html +0 -65
- data/vendor/examples/tipsy/tipsy-line.html +0 -67
- data/vendor/examples/tipsy/tipsy.css +0 -12
- data/vendor/examples/tipsy/tipsy.gif +0 -0
- data/vendor/examples/tipsy/tipsy.js +0 -66
- data/vendor/examples/weather/weather.html +0 -86
- data/vendor/examples/weather/weather.js +0 -42
- data/vendor/examples/wheat/wheat.html +0 -130
- data/vendor/examples/wheat/wheat.js +0 -70
- data/vendor/lib/google-compiler/COPYING +0 -202
- data/vendor/lib/google-compiler/README +0 -224
- data/vendor/lib/google-compiler/compiler-20100201.jar +0 -0
- data/vendor/protovis-d3.3.js +0 -15726
- data/vendor/test1.html +0 -30
- data/vendor/tests/behavior/drag-events.html +0 -47
- data/vendor/tests/behavior/drag.html +0 -32
- data/vendor/tests/behavior/drag2.html +0 -33
- data/vendor/tests/behavior/point-area-stacked.html +0 -73
- data/vendor/tests/behavior/point-area-stacked2.html +0 -70
- data/vendor/tests/behavior/point-area.html +0 -67
- data/vendor/tests/behavior/point-bar.html +0 -62
- data/vendor/tests/behavior/point-dot.html +0 -60
- data/vendor/tests/behavior/point-line.html +0 -62
- data/vendor/tests/behavior/point-lines-grid.html +0 -65
- data/vendor/tests/behavior/point-lines.html +0 -61
- data/vendor/tests/behavior/point-wedge.html +0 -43
- data/vendor/tests/behavior/resize.html +0 -69
- data/vendor/tests/behavior/select.html +0 -37
- data/vendor/tests/bzr.js +0 -62
- data/vendor/tests/center.js +0 -13
- data/vendor/tests/data/deviation.html +0 -54
- data/vendor/tests/data/histogram-discrete.html +0 -50
- data/vendor/tests/data/histogram.html +0 -56
- data/vendor/tests/data/log-adjusted.html +0 -48
- data/vendor/tests/data/log-ceil.html +0 -48
- data/vendor/tests/data/log-floor.html +0 -48
- data/vendor/tests/data/log-symmetric.html +0 -48
- data/vendor/tests/data/log.html +0 -48
- data/vendor/tests/data/max-index.html +0 -36
- data/vendor/tests/data/max.html +0 -36
- data/vendor/tests/data/min-index.html +0 -36
- data/vendor/tests/data/min.html +0 -36
- data/vendor/tests/data/ordinal-split-banded.html +0 -45
- data/vendor/tests/data/ordinal-split-banded2.html +0 -45
- data/vendor/tests/data/ordinal-split-flush.html +0 -51
- data/vendor/tests/data/ordinal-split.html +0 -51
- data/vendor/tests/data/range.html +0 -105
- data/vendor/tests/data/scale-date.html +0 -46
- data/vendor/tests/data/scale-date2.html +0 -38
- data/vendor/tests/data/scale-date3.html +0 -38
- data/vendor/tests/data/scale-date4.html +0 -38
- data/vendor/tests/data/scale-degenerate.html +0 -143
- data/vendor/tests/data/scale-linear.html +0 -59
- data/vendor/tests/data/scale-log.html +0 -60
- data/vendor/tests/data/scale-log2.html +0 -60
- data/vendor/tests/data/scale-log3.html +0 -60
- data/vendor/tests/data/scale-log4.html +0 -60
- data/vendor/tests/data/scale-log5.html +0 -60
- data/vendor/tests/data/scale-log6.html +0 -60
- data/vendor/tests/data/scale-quantile.html +0 -47
- data/vendor/tests/data/scale-quantile2.html +0 -50
- data/vendor/tests/data/scale-quantile3.html +0 -48
- data/vendor/tests/data/scale-root.html +0 -60
- data/vendor/tests/data/scale-root2.html +0 -39
- data/vendor/tests/data/scale-tick-format.html +0 -54
- data/vendor/tests/data/scale-ticks.html +0 -45
- data/vendor/tests/data/sum.html +0 -42
- data/vendor/tests/data/variance.html +0 -42
- data/vendor/tests/diamond.js +0 -40
- data/vendor/tests/flare-imports.js +0 -222
- data/vendor/tests/flare.js +0 -284
- data/vendor/tests/geo/countries-hires.js +0 -257
- data/vendor/tests/geo/countries-lores.js +0 -197
- data/vendor/tests/geo/population.js +0 -250
- data/vendor/tests/geo/scale-aitoff.html +0 -58
- data/vendor/tests/geo/scale-gall-peters.html +0 -56
- data/vendor/tests/geo/scale-hammer.html +0 -58
- data/vendor/tests/geo/scale-identity.html +0 -56
- data/vendor/tests/geo/scale-mercator.html +0 -56
- data/vendor/tests/geo/scale-sinusoidal.html +0 -57
- data/vendor/tests/geo/scale-smart-domain.html +0 -58
- data/vendor/tests/geo/scale.html +0 -55
- data/vendor/tests/geo/scale2.html +0 -40
- data/vendor/tests/geo/us-states.js +0 -61
- data/vendor/tests/heatmap.js +0 -63
- data/vendor/tests/lang/globals.html +0 -41
- data/vendor/tests/lang/init.html +0 -31
- data/vendor/tests/layers.js +0 -28
- data/vendor/tests/layout/arc-directed.html +0 -33
- data/vendor/tests/layout/arc-radial.html +0 -36
- data/vendor/tests/layout/arc-undirected.html +0 -32
- data/vendor/tests/layout/arc.html +0 -33
- data/vendor/tests/layout/arc2.html +0 -32
- data/vendor/tests/layout/bullet-multiples.html +0 -60
- data/vendor/tests/layout/bullet.html +0 -45
- data/vendor/tests/layout/bullets.js +0 -37
- data/vendor/tests/layout/cluster-fill-group.html +0 -24
- data/vendor/tests/layout/cluster-fill.html +0 -28
- data/vendor/tests/layout/cluster-partition-radial-fill.html +0 -43
- data/vendor/tests/layout/cluster-radial-fill-radius.html +0 -26
- data/vendor/tests/layout/cluster-radial-fill.html +0 -29
- data/vendor/tests/layout/cluster-radial-group-fill.html +0 -30
- data/vendor/tests/layout/cluster-radial-radius.html +0 -30
- data/vendor/tests/layout/cluster-radial.html +0 -28
- data/vendor/tests/layout/cluster-radial2.html +0 -33
- data/vendor/tests/layout/cluster.html +0 -34
- data/vendor/tests/layout/cluster2.html +0 -32
- data/vendor/tests/layout/force-toggle.html +0 -46
- data/vendor/tests/layout/force.html +0 -45
- data/vendor/tests/layout/force2.html +0 -58
- data/vendor/tests/layout/force3.html +0 -41
- data/vendor/tests/layout/force4.html +0 -45
- data/vendor/tests/layout/force5.html +0 -53
- data/vendor/tests/layout/grid-cols.html +0 -31
- data/vendor/tests/layout/grid-heatmap.html +0 -25
- data/vendor/tests/layout/grid-rows.html +0 -31
- data/vendor/tests/layout/grid.html +0 -34
- data/vendor/tests/layout/horizon-color.html +0 -31
- data/vendor/tests/layout/horizon.html +0 -31
- data/vendor/tests/layout/indent-toggle.html +0 -62
- data/vendor/tests/layout/indent.html +0 -25
- data/vendor/tests/layout/indent2.html +0 -33
- data/vendor/tests/layout/matrix-sort.html +0 -28
- data/vendor/tests/layout/matrix.html +0 -35
- data/vendor/tests/layout/network.html +0 -43
- data/vendor/tests/layout/pack-bubble.html +0 -45
- data/vendor/tests/layout/pack.html +0 -26
- data/vendor/tests/layout/pack2.html +0 -32
- data/vendor/tests/layout/partition-fill.html +0 -27
- data/vendor/tests/layout/partition-fill2.html +0 -22
- data/vendor/tests/layout/partition-fill3.html +0 -27
- data/vendor/tests/layout/partition-radial-fill-radius.html +0 -25
- data/vendor/tests/layout/partition-radial-fill.html +0 -26
- data/vendor/tests/layout/partition-radial-fill2.html +0 -23
- data/vendor/tests/layout/partition-radial-fill3.html +0 -29
- data/vendor/tests/layout/partition-radial-radius.html +0 -29
- data/vendor/tests/layout/partition-radial.html +0 -30
- data/vendor/tests/layout/partition-radial2.html +0 -33
- data/vendor/tests/layout/partition.html +0 -33
- data/vendor/tests/layout/partition2.html +0 -32
- data/vendor/tests/layout/rollup.html +0 -50
- data/vendor/tests/layout/stack-empty.html +0 -27
- data/vendor/tests/layout/stack-expand.html +0 -41
- data/vendor/tests/layout/stack-reverse.html +0 -42
- data/vendor/tests/layout/stack-right.html +0 -42
- data/vendor/tests/layout/stack-rule.html +0 -61
- data/vendor/tests/layout/stack-visible.html +0 -43
- data/vendor/tests/layout/stack.html +0 -53
- data/vendor/tests/layout/tree-radial.html +0 -31
- data/vendor/tests/layout/tree-radial2.html +0 -34
- data/vendor/tests/layout/tree-toggle.html +0 -36
- data/vendor/tests/layout/tree.html +0 -31
- data/vendor/tests/layout/tree2.html +0 -35
- data/vendor/tests/layout/treemap-hierarchy.html +0 -40
- data/vendor/tests/layout/treemap-margin.html +0 -26
- data/vendor/tests/layout/treemap-round.html +0 -40
- data/vendor/tests/layout/treemap-slice.html +0 -34
- data/vendor/tests/layout/treemap.html +0 -37
- data/vendor/tests/life.js +0 -212
- data/vendor/tests/mark/anchor.html +0 -25
- data/vendor/tests/mark/area-anchor-chain.html +0 -42
- data/vendor/tests/mark/area-anchor-line.html +0 -57
- data/vendor/tests/mark/area-anchor-stack.html +0 -35
- data/vendor/tests/mark/area-anchor.html +0 -43
- data/vendor/tests/mark/area-anchor2.html +0 -33
- data/vendor/tests/mark/area-cardinal.html +0 -57
- data/vendor/tests/mark/area-monotone.html +0 -57
- data/vendor/tests/mark/area-segmented-basis.html +0 -30
- data/vendor/tests/mark/area-segmented-cardinal.html +0 -30
- data/vendor/tests/mark/area-segmented-monotone.html +0 -30
- data/vendor/tests/mark/area-segmented-step.html +0 -44
- data/vendor/tests/mark/area-segmented.html +0 -29
- data/vendor/tests/mark/area-stacked-cardinal.html +0 -54
- data/vendor/tests/mark/area-stacked-monotone.html +0 -54
- data/vendor/tests/mark/area-stacked.html +0 -53
- data/vendor/tests/mark/area-step.html +0 -43
- data/vendor/tests/mark/area-zero.html +0 -32
- data/vendor/tests/mark/area.html +0 -57
- data/vendor/tests/mark/bar-anchor-stack.html +0 -51
- data/vendor/tests/mark/bar-anchor.html +0 -44
- data/vendor/tests/mark/bar-column-grouped.html +0 -63
- data/vendor/tests/mark/bar-column-stacked.html +0 -56
- data/vendor/tests/mark/bar-column.html +0 -54
- data/vendor/tests/mark/bar-grouped.html +0 -63
- data/vendor/tests/mark/bar-stacked.html +0 -57
- data/vendor/tests/mark/bar.html +0 -54
- data/vendor/tests/mark/cursor.html +0 -41
- data/vendor/tests/mark/def-type.html +0 -23
- data/vendor/tests/mark/dot-anchor.html +0 -33
- data/vendor/tests/mark/dot-radius.html +0 -22
- data/vendor/tests/mark/dot-stroke.html +0 -43
- data/vendor/tests/mark/dot.html +0 -52
- data/vendor/tests/mark/dot2.html +0 -61
- data/vendor/tests/mark/ease.html +0 -90
- data/vendor/tests/mark/event-dblclick.html +0 -30
- data/vendor/tests/mark/event-prototype.html +0 -45
- data/vendor/tests/mark/event-render.html +0 -45
- data/vendor/tests/mark/event.html +0 -24
- data/vendor/tests/mark/image-color-inherit.html +0 -33
- data/vendor/tests/mark/image-color.html +0 -35
- data/vendor/tests/mark/image-color2.html +0 -35
- data/vendor/tests/mark/image-heatmap.html +0 -29
- data/vendor/tests/mark/image.html +0 -32
- data/vendor/tests/mark/label-break.html +0 -54
- data/vendor/tests/mark/label-decoration.html +0 -22
- data/vendor/tests/mark/label-events.html +0 -32
- data/vendor/tests/mark/line-anchor.html +0 -42
- data/vendor/tests/mark/line-basis.html +0 -54
- data/vendor/tests/mark/line-brownian.html +0 -57
- data/vendor/tests/mark/line-cardinal.html +0 -77
- data/vendor/tests/mark/line-catmull-rom.html +0 -78
- data/vendor/tests/mark/line-curve.html +0 -65
- data/vendor/tests/mark/line-eccentricity.html +0 -39
- data/vendor/tests/mark/line-fill.html +0 -24
- data/vendor/tests/mark/line-join.html +0 -51
- data/vendor/tests/mark/line-monotone-non-monotone.html +0 -53
- data/vendor/tests/mark/line-monotone-two-way.html +0 -61
- data/vendor/tests/mark/line-monotone.html +0 -53
- data/vendor/tests/mark/line-polar.html +0 -36
- data/vendor/tests/mark/line-segmented-basis.html +0 -57
- data/vendor/tests/mark/line-segmented-cardinal.html +0 -80
- data/vendor/tests/mark/line-segmented-join.html +0 -52
- data/vendor/tests/mark/line-segmented-monotone.html +0 -56
- data/vendor/tests/mark/line-segmented-polar.html +0 -30
- data/vendor/tests/mark/line-segmented-step.html +0 -41
- data/vendor/tests/mark/line-segmented-step2.html +0 -32
- data/vendor/tests/mark/line-segmented.html +0 -30
- data/vendor/tests/mark/line-step.html +0 -39
- data/vendor/tests/mark/line-tension.html +0 -59
- data/vendor/tests/mark/line.html +0 -51
- data/vendor/tests/mark/panel-anchor.html +0 -37
- data/vendor/tests/mark/panel-anchor2.html +0 -31
- data/vendor/tests/mark/panel-anchor3.html +0 -22
- data/vendor/tests/mark/panel-anchor4.html +0 -28
- data/vendor/tests/mark/panel-anchor5.html +0 -28
- data/vendor/tests/mark/panel-append.html +0 -29
- data/vendor/tests/mark/panel-canvas.html +0 -107
- data/vendor/tests/mark/panel-fill.html +0 -50
- data/vendor/tests/mark/panel-mouse.html +0 -53
- data/vendor/tests/mark/panel-transform.html +0 -67
- data/vendor/tests/mark/property-cast.html +0 -24
- data/vendor/tests/mark/render-partial.html +0 -42
- data/vendor/tests/mark/rule-anchor.html +0 -29
- data/vendor/tests/mark/title.html +0 -41
- data/vendor/tests/mark/transition-anchor.html +0 -47
- data/vendor/tests/mark/transition-wedge.html +0 -47
- data/vendor/tests/mark/transition.html +0 -106
- data/vendor/tests/mark/wedge-donut.html +0 -35
- data/vendor/tests/mark/wedge-implied.html +0 -42
- data/vendor/tests/mark/wedge-pie.html +0 -37
- data/vendor/tests/mark/wedge-ring.html +0 -27
- data/vendor/tests/miserables.js +0 -348
- data/vendor/tests/physics/dorling.html +0 -70
- data/vendor/tests/physics/simulation.html +0 -56
- data/vendor/tests/social.js +0 -28
- data/vendor/tests/stanford.png +0 -0
- data/vendor/tests/style.css +0 -5
- data/vendor/tests/testify.css +0 -29
- data/vendor/tests/testify.js +0 -16
- data/vendor/tests/text/format-number.html +0 -75
@@ -1,79 +0,0 @@
|
|
1
|
-
<html>
|
2
|
-
<head>
|
3
|
-
<title>Group Stacked Bar Chart</title>
|
4
|
-
<script type="text/javascript" src="../../protovis-d3.3.js"></script>
|
5
|
-
<script type="text/javascript" src="headcount.js"></script>
|
6
|
-
</head>
|
7
|
-
<body>
|
8
|
-
<script type="text/javascript+protovis">
|
9
|
-
|
10
|
-
/* Extract the unique dates, departments and types. */
|
11
|
-
var dates = pv.uniq(headcount, function(d) d.date),
|
12
|
-
depts = pv.uniq(headcount, function(d) d.dept),
|
13
|
-
types = pv.uniq(headcount, function(d) d.type);
|
14
|
-
|
15
|
-
/* Build a map of headcounts by date > dept > type. */
|
16
|
-
var count = pv.nest(headcount)
|
17
|
-
.key(function(d) d.date)
|
18
|
-
.key(function(d) d.dept)
|
19
|
-
.key(function(d) d.type)
|
20
|
-
.rollup(function(v) v[0].headcount);
|
21
|
-
|
22
|
-
/* Compute the maximum stack height using sum(types | date + dept). */
|
23
|
-
var max = pv.max(dates,
|
24
|
-
function(q) pv.max(depts,
|
25
|
-
function(d) pv.sum(types,
|
26
|
-
function(t) count[q][d][t])));
|
27
|
-
|
28
|
-
var w = 250,
|
29
|
-
h = 400,
|
30
|
-
x1 = pv.Scale.ordinal(dates).splitBanded(0, w, .8),
|
31
|
-
x2 = pv.Scale.ordinal(depts).splitBanded(0, x1.range().band, .9),
|
32
|
-
y = pv.Scale.linear(0, max).range(0, h);
|
33
|
-
|
34
|
-
var vis = new pv.Panel()
|
35
|
-
.width(w)
|
36
|
-
.height(h)
|
37
|
-
.bottom(20)
|
38
|
-
.left(25)
|
39
|
-
.right(5)
|
40
|
-
.top(5);
|
41
|
-
|
42
|
-
var bar = vis.add(pv.Panel)
|
43
|
-
.data(dates)
|
44
|
-
.left(x1)
|
45
|
-
.add(pv.Layout.Stack)
|
46
|
-
.layers(types)
|
47
|
-
.values(depts)
|
48
|
-
.x(x2)
|
49
|
-
.y(function(d, t, q) y(count[q][d][t]))
|
50
|
-
.layer.add(pv.Bar)
|
51
|
-
.width(x2.range().band)
|
52
|
-
.title(function(d, t, q) d + "-" + t + ": " + count[q][d][t])
|
53
|
-
.fillStyle(pv.Colors.category20().by(function(d, t) d + t));
|
54
|
-
|
55
|
-
vis.add(pv.Label)
|
56
|
-
.data(dates)
|
57
|
-
.bottom(0)
|
58
|
-
.left(function(d) x1(d) + x1.range().band / 2)
|
59
|
-
.textMargin(5)
|
60
|
-
.textBaseline("top")
|
61
|
-
.textAlign("center")
|
62
|
-
.text(pv.Format.date("%m/%y"));
|
63
|
-
|
64
|
-
vis.add(pv.Rule)
|
65
|
-
.data(y.ticks())
|
66
|
-
.bottom(y)
|
67
|
-
.strokeStyle(function(d) d ? "rgba(255, 255, 255, .3)" : "#000")
|
68
|
-
.add(pv.Rule)
|
69
|
-
.left(0)
|
70
|
-
.width(5)
|
71
|
-
.strokeStyle("#000")
|
72
|
-
.anchor("left").add(pv.Label)
|
73
|
-
.text(y.tickFormat);
|
74
|
-
|
75
|
-
vis.render();
|
76
|
-
|
77
|
-
</script>
|
78
|
-
</body>
|
79
|
-
</html>
|
@@ -1,23 +0,0 @@
|
|
1
|
-
var headcount = [
|
2
|
-
{date: "1/2009", dept: "eng", type: "perm", headcount: 140},
|
3
|
-
{date: "1/2009", dept: "eng", type: "temp", headcount: 39},
|
4
|
-
{date: "1/2009", dept: "sales", type: "perm", headcount: 209},
|
5
|
-
{date: "1/2009", dept: "sales", type: "temp", headcount: 123},
|
6
|
-
{date: "4/2009", dept: "eng", type: "perm", headcount: 160},
|
7
|
-
{date: "4/2009", dept: "eng", type: "temp", headcount: 44},
|
8
|
-
{date: "4/2009", dept: "sales", type: "perm", headcount: 229},
|
9
|
-
{date: "4/2009", dept: "sales", type: "temp", headcount: 113},
|
10
|
-
{date: "7/2009", dept: "eng", type: "perm", headcount: 174},
|
11
|
-
{date: "7/2009", dept: "eng", type: "temp", headcount: 41},
|
12
|
-
{date: "7/2009", dept: "sales", type: "perm", headcount: 224},
|
13
|
-
{date: "7/2009", dept: "sales", type: "temp", headcount: 169},
|
14
|
-
{date: "10/2009", dept: "eng", type: "perm", headcount: 190},
|
15
|
-
{date: "10/2009", dept: "eng", type: "temp", headcount: 43},
|
16
|
-
{date: "10/2009", dept: "sales", type: "perm", headcount: 232},
|
17
|
-
{date: "10/2009", dept: "sales", type: "temp", headcount: 185}
|
18
|
-
];
|
19
|
-
|
20
|
-
(function() {
|
21
|
-
var df = pv.Format.date("%m/%y");
|
22
|
-
headcount.forEach(function(d) { d.date = df.parse(d.date); });
|
23
|
-
})();
|
@@ -1,76 +0,0 @@
|
|
1
|
-
<html>
|
2
|
-
<head>
|
3
|
-
<title>Hotel Stays</title>
|
4
|
-
<link type="text/css" href="../ex.css" rel="stylesheet"/>
|
5
|
-
<script type="text/javascript" src="../../protovis-r3.3.js"></script>
|
6
|
-
<script type="text/javascript" src="hotel.js"></script>
|
7
|
-
<style type="text/css">
|
8
|
-
|
9
|
-
#fig {
|
10
|
-
width: 520px;
|
11
|
-
height: 520px;
|
12
|
-
}
|
13
|
-
|
14
|
-
</style>
|
15
|
-
</head>
|
16
|
-
<body><div id="center"><div id="fig">
|
17
|
-
<script type="text/javascript+protovis">
|
18
|
-
|
19
|
-
/* Scales and size parameters. */
|
20
|
-
var w = 270,
|
21
|
-
h = 480,
|
22
|
-
x = pv.Scale.ordinal(pv.range(24)).splitBanded(0, w),
|
23
|
-
y = pv.Scale.ordinal(order).splitBanded(0, h, 4 / 5);
|
24
|
-
|
25
|
-
/* Compute the mean per metric. */
|
26
|
-
var type = pv.nest(hotel).key(function(d) d.type),
|
27
|
-
mean = type.rollup(function(values) pv.mean(values, function(d) d.count));
|
28
|
-
|
29
|
-
/* The root panel. */
|
30
|
-
var vis = new pv.Panel()
|
31
|
-
.width(w)
|
32
|
-
.height(h)
|
33
|
-
.top(40)
|
34
|
-
.right(200);
|
35
|
-
|
36
|
-
/* A panel per type... */
|
37
|
-
var panel = vis.add(pv.Panel)
|
38
|
-
.data(type.entries())
|
39
|
-
.top(y.by(pv.index))
|
40
|
-
.height(y.range().band);
|
41
|
-
|
42
|
-
/* ... with a label ... */
|
43
|
-
panel.anchor("right").add(pv.Label)
|
44
|
-
.font("13px Georgia")
|
45
|
-
.textAlign("left")
|
46
|
-
.textMargin(8)
|
47
|
-
.text(function(x, d) d.key);
|
48
|
-
|
49
|
-
/* ... and bar chart. */
|
50
|
-
panel.add(pv.Bar)
|
51
|
-
.def("y", function(d) pv.Scale.linear()
|
52
|
-
.domain(0, pv.max(d.values, function(d) d.count))
|
53
|
-
.range(0, this.parent.height()))
|
54
|
-
.data(function(d) pv.repeat(d.values))
|
55
|
-
.left(x.by(pv.index))
|
56
|
-
.bottom(0)
|
57
|
-
.width(x.range().band)
|
58
|
-
.height(function(d) this.y()(d.count))
|
59
|
-
.antialias(false)
|
60
|
-
.fillStyle(function(d) (d.count > mean[d.type]) ? "#000" : null)
|
61
|
-
.strokeStyle("#000")
|
62
|
-
.lineWidth(1);
|
63
|
-
|
64
|
-
/* Month labels. */
|
65
|
-
vis.add(pv.Label)
|
66
|
-
.data(pv.repeat("JFMAMJJASOND".split("")))
|
67
|
-
.top(function() (this.index % 6) > 2 ? 0 : -2)
|
68
|
-
.left(function() x(this.index) + x.range().band / 2)
|
69
|
-
.textAlign("center")
|
70
|
-
.font("bold 15px Arial");
|
71
|
-
|
72
|
-
vis.render();
|
73
|
-
|
74
|
-
</script>
|
75
|
-
</div></div></body>
|
76
|
-
</html>
|
@@ -1,245 +0,0 @@
|
|
1
|
-
var hotel = [
|
2
|
-
{"type":"1. % CLIENTELE FEMALE","month":"Jan","count":26},
|
3
|
-
{"type":"1. % CLIENTELE FEMALE","month":"Feb","count":21},
|
4
|
-
{"type":"1. % CLIENTELE FEMALE","month":"Mar","count":26},
|
5
|
-
{"type":"1. % CLIENTELE FEMALE","month":"Apr","count":28},
|
6
|
-
{"type":"1. % CLIENTELE FEMALE","month":"May","count":20},
|
7
|
-
{"type":"1. % CLIENTELE FEMALE","month":"Jun","count":20},
|
8
|
-
{"type":"1. % CLIENTELE FEMALE","month":"Jul","count":20},
|
9
|
-
{"type":"1. % CLIENTELE FEMALE","month":"Aug","count":20},
|
10
|
-
{"type":"1. % CLIENTELE FEMALE","month":"Sep","count":20},
|
11
|
-
{"type":"1. % CLIENTELE FEMALE","month":"Oct","count":40},
|
12
|
-
{"type":"1. % CLIENTELE FEMALE","month":"Nov","count":15},
|
13
|
-
{"type":"1. % CLIENTELE FEMALE","month":"Dec","count":40},
|
14
|
-
{"type":"2. % CLIENTELE LOCAL","month":"Jan","count":69},
|
15
|
-
{"type":"2. % CLIENTELE LOCAL","month":"Feb","count":70},
|
16
|
-
{"type":"2. % CLIENTELE LOCAL","month":"Mar","count":77},
|
17
|
-
{"type":"2. % CLIENTELE LOCAL","month":"Apr","count":71},
|
18
|
-
{"type":"2. % CLIENTELE LOCAL","month":"May","count":37},
|
19
|
-
{"type":"2. % CLIENTELE LOCAL","month":"Jun","count":36},
|
20
|
-
{"type":"2. % CLIENTELE LOCAL","month":"Jul","count":39},
|
21
|
-
{"type":"2. % CLIENTELE LOCAL","month":"Aug","count":39},
|
22
|
-
{"type":"2. % CLIENTELE LOCAL","month":"Sep","count":55},
|
23
|
-
{"type":"2. % CLIENTELE LOCAL","month":"Oct","count":60},
|
24
|
-
{"type":"2. % CLIENTELE LOCAL","month":"Nov","count":68},
|
25
|
-
{"type":"2. % CLIENTELE LOCAL","month":"Dec","count":72},
|
26
|
-
{"type":"3. % CLIENTELE USA","month":"Jan","count":7},
|
27
|
-
{"type":"3. % CLIENTELE USA","month":"Feb","count":6},
|
28
|
-
{"type":"3. % CLIENTELE USA","month":"Mar","count":3},
|
29
|
-
{"type":"3. % CLIENTELE USA","month":"Apr","count":6},
|
30
|
-
{"type":"3. % CLIENTELE USA","month":"May","count":23},
|
31
|
-
{"type":"3. % CLIENTELE USA","month":"Jun","count":14},
|
32
|
-
{"type":"3. % CLIENTELE USA","month":"Jul","count":19},
|
33
|
-
{"type":"3. % CLIENTELE USA","month":"Aug","count":14},
|
34
|
-
{"type":"3. % CLIENTELE USA","month":"Sep","count":9},
|
35
|
-
{"type":"3. % CLIENTELE USA","month":"Oct","count":6},
|
36
|
-
{"type":"3. % CLIENTELE USA","month":"Nov","count":8},
|
37
|
-
{"type":"3. % CLIENTELE USA","month":"Dec","count":8},
|
38
|
-
{"type":"4. % CLIENTELE SOUTH-AMERICA","month":"Jan","count":0},
|
39
|
-
{"type":"4. % CLIENTELE SOUTH-AMERICA","month":"Feb","count":0},
|
40
|
-
{"type":"4. % CLIENTELE SOUTH-AMERICA","month":"Mar","count":0},
|
41
|
-
{"type":"4. % CLIENTELE SOUTH-AMERICA","month":"Apr","count":0},
|
42
|
-
{"type":"4. % CLIENTELE SOUTH-AMERICA","month":"May","count":8},
|
43
|
-
{"type":"4. % CLIENTELE SOUTH-AMERICA","month":"Jun","count":6},
|
44
|
-
{"type":"4. % CLIENTELE SOUTH-AMERICA","month":"Jul","count":6},
|
45
|
-
{"type":"4. % CLIENTELE SOUTH-AMERICA","month":"Aug","count":4},
|
46
|
-
{"type":"4. % CLIENTELE SOUTH-AMERICA","month":"Sep","count":2},
|
47
|
-
{"type":"4. % CLIENTELE SOUTH-AMERICA","month":"Oct","count":12},
|
48
|
-
{"type":"4. % CLIENTELE SOUTH-AMERICA","month":"Nov","count":0},
|
49
|
-
{"type":"4. % CLIENTELE SOUTH-AMERICA","month":"Dec","count":0},
|
50
|
-
{"type":"5. % CLIENTELE EUROPE","month":"Jan","count":20},
|
51
|
-
{"type":"5. % CLIENTELE EUROPE","month":"Feb","count":15},
|
52
|
-
{"type":"5. % CLIENTELE EUROPE","month":"Mar","count":14},
|
53
|
-
{"type":"5. % CLIENTELE EUROPE","month":"Apr","count":15},
|
54
|
-
{"type":"5. % CLIENTELE EUROPE","month":"May","count":23},
|
55
|
-
{"type":"5. % CLIENTELE EUROPE","month":"Jun","count":27},
|
56
|
-
{"type":"5. % CLIENTELE EUROPE","month":"Jul","count":22},
|
57
|
-
{"type":"5. % CLIENTELE EUROPE","month":"Aug","count":30},
|
58
|
-
{"type":"5. % CLIENTELE EUROPE","month":"Sep","count":27},
|
59
|
-
{"type":"5. % CLIENTELE EUROPE","month":"Oct","count":19},
|
60
|
-
{"type":"5. % CLIENTELE EUROPE","month":"Nov","count":19},
|
61
|
-
{"type":"5. % CLIENTELE EUROPE","month":"Dec","count":17},
|
62
|
-
{"type":"6. % CLIENTELE M.EAST, AFRICA","month":"Jan","count":1},
|
63
|
-
{"type":"6. % CLIENTELE M.EAST, AFRICA","month":"Feb","count":0},
|
64
|
-
{"type":"6. % CLIENTELE M.EAST, AFRICA","month":"Mar","count":0},
|
65
|
-
{"type":"6. % CLIENTELE M.EAST, AFRICA","month":"Apr","count":8},
|
66
|
-
{"type":"6. % CLIENTELE M.EAST, AFRICA","month":"May","count":6},
|
67
|
-
{"type":"6. % CLIENTELE M.EAST, AFRICA","month":"Jun","count":4},
|
68
|
-
{"type":"6. % CLIENTELE M.EAST, AFRICA","month":"Jul","count":6},
|
69
|
-
{"type":"6. % CLIENTELE M.EAST, AFRICA","month":"Aug","count":4},
|
70
|
-
{"type":"6. % CLIENTELE M.EAST, AFRICA","month":"Sep","count":2},
|
71
|
-
{"type":"6. % CLIENTELE M.EAST, AFRICA","month":"Oct","count":1},
|
72
|
-
{"type":"6. % CLIENTELE M.EAST, AFRICA","month":"Nov","count":0},
|
73
|
-
{"type":"6. % CLIENTELE M.EAST, AFRICA","month":"Dec","count":1},
|
74
|
-
{"type":"7. % CLIENTELE ASIA","month":"Jan","count":3},
|
75
|
-
{"type":"7. % CLIENTELE ASIA","month":"Feb","count":10},
|
76
|
-
{"type":"7. % CLIENTELE ASIA","month":"Mar","count":6},
|
77
|
-
{"type":"7. % CLIENTELE ASIA","month":"Apr","count":0},
|
78
|
-
{"type":"7. % CLIENTELE ASIA","month":"May","count":3},
|
79
|
-
{"type":"7. % CLIENTELE ASIA","month":"Jun","count":13},
|
80
|
-
{"type":"7. % CLIENTELE ASIA","month":"Jul","count":8},
|
81
|
-
{"type":"7. % CLIENTELE ASIA","month":"Aug","count":9},
|
82
|
-
{"type":"7. % CLIENTELE ASIA","month":"Sep","count":5},
|
83
|
-
{"type":"7. % CLIENTELE ASIA","month":"Oct","count":2},
|
84
|
-
{"type":"7. % CLIENTELE ASIA","month":"Nov","count":5},
|
85
|
-
{"type":"7. % CLIENTELE ASIA","month":"Dec","count":2},
|
86
|
-
{"type":"8. % BUSINESSMEN","month":"Jan","count":78},
|
87
|
-
{"type":"8. % BUSINESSMEN","month":"Feb","count":80},
|
88
|
-
{"type":"8. % BUSINESSMEN","month":"Mar","count":85},
|
89
|
-
{"type":"8. % BUSINESSMEN","month":"Apr","count":86},
|
90
|
-
{"type":"8. % BUSINESSMEN","month":"May","count":85},
|
91
|
-
{"type":"8. % BUSINESSMEN","month":"Jun","count":87},
|
92
|
-
{"type":"8. % BUSINESSMEN","month":"Jul","count":70},
|
93
|
-
{"type":"8. % BUSINESSMEN","month":"Aug","count":76},
|
94
|
-
{"type":"8. % BUSINESSMEN","month":"Sep","count":87},
|
95
|
-
{"type":"8. % BUSINESSMEN","month":"Oct","count":85},
|
96
|
-
{"type":"8. % BUSINESSMEN","month":"Nov","count":87},
|
97
|
-
{"type":"8. % BUSINESSMEN","month":"Dec","count":80},
|
98
|
-
{"type":"9. % TOURISTS","month":"Jan","count":22},
|
99
|
-
{"type":"9. % TOURISTS","month":"Feb","count":20},
|
100
|
-
{"type":"9. % TOURISTS","month":"Mar","count":15},
|
101
|
-
{"type":"9. % TOURISTS","month":"Apr","count":14},
|
102
|
-
{"type":"9. % TOURISTS","month":"May","count":15},
|
103
|
-
{"type":"9. % TOURISTS","month":"Jun","count":13},
|
104
|
-
{"type":"9. % TOURISTS","month":"Jul","count":30},
|
105
|
-
{"type":"9. % TOURISTS","month":"Aug","count":24},
|
106
|
-
{"type":"9. % TOURISTS","month":"Sep","count":13},
|
107
|
-
{"type":"9. % TOURISTS","month":"Oct","count":15},
|
108
|
-
{"type":"9. % TOURISTS","month":"Nov","count":13},
|
109
|
-
{"type":"9. % TOURISTS","month":"Dec","count":20},
|
110
|
-
{"type":"10. % DIRECT RESERVATIONS","month":"Jan","count":70},
|
111
|
-
{"type":"10. % DIRECT RESERVATIONS","month":"Feb","count":70},
|
112
|
-
{"type":"10. % DIRECT RESERVATIONS","month":"Mar","count":75},
|
113
|
-
{"type":"10. % DIRECT RESERVATIONS","month":"Apr","count":74},
|
114
|
-
{"type":"10. % DIRECT RESERVATIONS","month":"May","count":69},
|
115
|
-
{"type":"10. % DIRECT RESERVATIONS","month":"Jun","count":68},
|
116
|
-
{"type":"10. % DIRECT RESERVATIONS","month":"Jul","count":74},
|
117
|
-
{"type":"10. % DIRECT RESERVATIONS","month":"Aug","count":75},
|
118
|
-
{"type":"10. % DIRECT RESERVATIONS","month":"Sep","count":68},
|
119
|
-
{"type":"10. % DIRECT RESERVATIONS","month":"Oct","count":68},
|
120
|
-
{"type":"10. % DIRECT RESERVATIONS","month":"Nov","count":64},
|
121
|
-
{"type":"10. % DIRECT RESERVATIONS","month":"Dec","count":75},
|
122
|
-
{"type":"11. % AGENCY RESERVATIONS","month":"Jan","count":20},
|
123
|
-
{"type":"11. % AGENCY RESERVATIONS","month":"Feb","count":18},
|
124
|
-
{"type":"11. % AGENCY RESERVATIONS","month":"Mar","count":19},
|
125
|
-
{"type":"11. % AGENCY RESERVATIONS","month":"Apr","count":17},
|
126
|
-
{"type":"11. % AGENCY RESERVATIONS","month":"May","count":27},
|
127
|
-
{"type":"11. % AGENCY RESERVATIONS","month":"Jun","count":27},
|
128
|
-
{"type":"11. % AGENCY RESERVATIONS","month":"Jul","count":19},
|
129
|
-
{"type":"11. % AGENCY RESERVATIONS","month":"Aug","count":19},
|
130
|
-
{"type":"11. % AGENCY RESERVATIONS","month":"Sep","count":26},
|
131
|
-
{"type":"11. % AGENCY RESERVATIONS","month":"Oct","count":27},
|
132
|
-
{"type":"11. % AGENCY RESERVATIONS","month":"Nov","count":21},
|
133
|
-
{"type":"11. % AGENCY RESERVATIONS","month":"Dec","count":15},
|
134
|
-
{"type":"12. % AIR CREWS","month":"Jan","count":10},
|
135
|
-
{"type":"12. % AIR CREWS","month":"Feb","count":12},
|
136
|
-
{"type":"12. % AIR CREWS","month":"Mar","count":6},
|
137
|
-
{"type":"12. % AIR CREWS","month":"Apr","count":9},
|
138
|
-
{"type":"12. % AIR CREWS","month":"May","count":4},
|
139
|
-
{"type":"12. % AIR CREWS","month":"Jun","count":5},
|
140
|
-
{"type":"12. % AIR CREWS","month":"Jul","count":7},
|
141
|
-
{"type":"12. % AIR CREWS","month":"Aug","count":6},
|
142
|
-
{"type":"12. % AIR CREWS","month":"Sep","count":6},
|
143
|
-
{"type":"12. % AIR CREWS","month":"Oct","count":5},
|
144
|
-
{"type":"12. % AIR CREWS","month":"Nov","count":15},
|
145
|
-
{"type":"12. % AIR CREWS","month":"Dec","count":10},
|
146
|
-
{"type":"13. % CLIENTS UNDER 20 YEARS","month":"Jan","count":2},
|
147
|
-
{"type":"13. % CLIENTS UNDER 20 YEARS","month":"Feb","count":2},
|
148
|
-
{"type":"13. % CLIENTS UNDER 20 YEARS","month":"Mar","count":4},
|
149
|
-
{"type":"13. % CLIENTS UNDER 20 YEARS","month":"Apr","count":2},
|
150
|
-
{"type":"13. % CLIENTS UNDER 20 YEARS","month":"May","count":2},
|
151
|
-
{"type":"13. % CLIENTS UNDER 20 YEARS","month":"Jun","count":1},
|
152
|
-
{"type":"13. % CLIENTS UNDER 20 YEARS","month":"Jul","count":1},
|
153
|
-
{"type":"13. % CLIENTS UNDER 20 YEARS","month":"Aug","count":2},
|
154
|
-
{"type":"13. % CLIENTS UNDER 20 YEARS","month":"Sep","count":2},
|
155
|
-
{"type":"13. % CLIENTS UNDER 20 YEARS","month":"Oct","count":4},
|
156
|
-
{"type":"13. % CLIENTS UNDER 20 YEARS","month":"Nov","count":2},
|
157
|
-
{"type":"13. % CLIENTS UNDER 20 YEARS","month":"Dec","count":5},
|
158
|
-
{"type":"14. % CLIENTS 20-35 YEARS","month":"Jan","count":25},
|
159
|
-
{"type":"14. % CLIENTS 20-35 YEARS","month":"Feb","count":27},
|
160
|
-
{"type":"14. % CLIENTS 20-35 YEARS","month":"Mar","count":37},
|
161
|
-
{"type":"14. % CLIENTS 20-35 YEARS","month":"Apr","count":35},
|
162
|
-
{"type":"14. % CLIENTS 20-35 YEARS","month":"May","count":25},
|
163
|
-
{"type":"14. % CLIENTS 20-35 YEARS","month":"Jun","count":25},
|
164
|
-
{"type":"14. % CLIENTS 20-35 YEARS","month":"Jul","count":27},
|
165
|
-
{"type":"14. % CLIENTS 20-35 YEARS","month":"Aug","count":28},
|
166
|
-
{"type":"14. % CLIENTS 20-35 YEARS","month":"Sep","count":24},
|
167
|
-
{"type":"14. % CLIENTS 20-35 YEARS","month":"Oct","count":30},
|
168
|
-
{"type":"14. % CLIENTS 20-35 YEARS","month":"Nov","count":24},
|
169
|
-
{"type":"14. % CLIENTS 20-35 YEARS","month":"Dec","count":30},
|
170
|
-
{"type":"15. % CLIENTS 35-55 YEARS","month":"Jan","count":48},
|
171
|
-
{"type":"15. % CLIENTS 35-55 YEARS","month":"Feb","count":49},
|
172
|
-
{"type":"15. % CLIENTS 35-55 YEARS","month":"Mar","count":42},
|
173
|
-
{"type":"15. % CLIENTS 35-55 YEARS","month":"Apr","count":48},
|
174
|
-
{"type":"15. % CLIENTS 35-55 YEARS","month":"May","count":54},
|
175
|
-
{"type":"15. % CLIENTS 35-55 YEARS","month":"Jun","count":55},
|
176
|
-
{"type":"15. % CLIENTS 35-55 YEARS","month":"Jul","count":53},
|
177
|
-
{"type":"15. % CLIENTS 35-55 YEARS","month":"Aug","count":51},
|
178
|
-
{"type":"15. % CLIENTS 35-55 YEARS","month":"Sep","count":55},
|
179
|
-
{"type":"15. % CLIENTS 35-55 YEARS","month":"Oct","count":46},
|
180
|
-
{"type":"15. % CLIENTS 35-55 YEARS","month":"Nov","count":55},
|
181
|
-
{"type":"15. % CLIENTS 35-55 YEARS","month":"Dec","count":43},
|
182
|
-
{"type":"16. % CLIENTS MORE THAN 55 YEARS","month":"Jan","count":25},
|
183
|
-
{"type":"16. % CLIENTS MORE THAN 55 YEARS","month":"Feb","count":22},
|
184
|
-
{"type":"16. % CLIENTS MORE THAN 55 YEARS","month":"Mar","count":17},
|
185
|
-
{"type":"16. % CLIENTS MORE THAN 55 YEARS","month":"Apr","count":15},
|
186
|
-
{"type":"16. % CLIENTS MORE THAN 55 YEARS","month":"May","count":19},
|
187
|
-
{"type":"16. % CLIENTS MORE THAN 55 YEARS","month":"Jun","count":19},
|
188
|
-
{"type":"16. % CLIENTS MORE THAN 55 YEARS","month":"Jul","count":19},
|
189
|
-
{"type":"16. % CLIENTS MORE THAN 55 YEARS","month":"Aug","count":19},
|
190
|
-
{"type":"16. % CLIENTS MORE THAN 55 YEARS","month":"Sep","count":19},
|
191
|
-
{"type":"16. % CLIENTS MORE THAN 55 YEARS","month":"Oct","count":20},
|
192
|
-
{"type":"16. % CLIENTS MORE THAN 55 YEARS","month":"Nov","count":19},
|
193
|
-
{"type":"16. % CLIENTS MORE THAN 55 YEARS","month":"Dec","count":22},
|
194
|
-
{"type":"17. PRICE OF ROOMS","month":"Jan","count":163},
|
195
|
-
{"type":"17. PRICE OF ROOMS","month":"Feb","count":167},
|
196
|
-
{"type":"17. PRICE OF ROOMS","month":"Mar","count":166},
|
197
|
-
{"type":"17. PRICE OF ROOMS","month":"Apr","count":174},
|
198
|
-
{"type":"17. PRICE OF ROOMS","month":"May","count":152},
|
199
|
-
{"type":"17. PRICE OF ROOMS","month":"Jun","count":155},
|
200
|
-
{"type":"17. PRICE OF ROOMS","month":"Jul","count":145},
|
201
|
-
{"type":"17. PRICE OF ROOMS","month":"Aug","count":170},
|
202
|
-
{"type":"17. PRICE OF ROOMS","month":"Sep","count":157},
|
203
|
-
{"type":"17. PRICE OF ROOMS","month":"Oct","count":174},
|
204
|
-
{"type":"17. PRICE OF ROOMS","month":"Nov","count":165},
|
205
|
-
{"type":"17. PRICE OF ROOMS","month":"Dec","count":158},
|
206
|
-
{"type":"18. LENGTH OF STAY","month":"Jan","count":1.65},
|
207
|
-
{"type":"18. LENGTH OF STAY","month":"Feb","count":1.71},
|
208
|
-
{"type":"18. LENGTH OF STAY","month":"Mar","count":1.65},
|
209
|
-
{"type":"18. LENGTH OF STAY","month":"Apr","count":1.91},
|
210
|
-
{"type":"18. LENGTH OF STAY","month":"May","count":1.9},
|
211
|
-
{"type":"18. LENGTH OF STAY","month":"Jun","count":2},
|
212
|
-
{"type":"18. LENGTH OF STAY","month":"Jul","count":1.54},
|
213
|
-
{"type":"18. LENGTH OF STAY","month":"Aug","count":1.6},
|
214
|
-
{"type":"18. LENGTH OF STAY","month":"Sep","count":1.73},
|
215
|
-
{"type":"18. LENGTH OF STAY","month":"Oct","count":1.82},
|
216
|
-
{"type":"18. LENGTH OF STAY","month":"Nov","count":1.66},
|
217
|
-
{"type":"18. LENGTH OF STAY","month":"Dec","count":1.44},
|
218
|
-
{"type":"19. % OCCUPANCY","month":"Jan","count":67},
|
219
|
-
{"type":"19. % OCCUPANCY","month":"Feb","count":82},
|
220
|
-
{"type":"19. % OCCUPANCY","month":"Mar","count":70},
|
221
|
-
{"type":"19. % OCCUPANCY","month":"Apr","count":83},
|
222
|
-
{"type":"19. % OCCUPANCY","month":"May","count":74},
|
223
|
-
{"type":"19. % OCCUPANCY","month":"Jun","count":77},
|
224
|
-
{"type":"19. % OCCUPANCY","month":"Jul","count":56},
|
225
|
-
{"type":"19. % OCCUPANCY","month":"Aug","count":62},
|
226
|
-
{"type":"19. % OCCUPANCY","month":"Sep","count":90},
|
227
|
-
{"type":"19. % OCCUPANCY","month":"Oct","count":92},
|
228
|
-
{"type":"19. % OCCUPANCY","month":"Nov","count":78},
|
229
|
-
{"type":"19. % OCCUPANCY","month":"Dec","count":55},
|
230
|
-
{"type":"20. CONVENTIONS","month":"Jan","count":0},
|
231
|
-
{"type":"20. CONVENTIONS","month":"Feb","count":0},
|
232
|
-
{"type":"20. CONVENTIONS","month":"Mar","count":0},
|
233
|
-
{"type":"20. CONVENTIONS","month":"Apr","count":1},
|
234
|
-
{"type":"20. CONVENTIONS","month":"May","count":1},
|
235
|
-
{"type":"20. CONVENTIONS","month":"Jun","count":1},
|
236
|
-
{"type":"20. CONVENTIONS","month":"Jul","count":0},
|
237
|
-
{"type":"20. CONVENTIONS","month":"Aug","count":0},
|
238
|
-
{"type":"20. CONVENTIONS","month":"Sep","count":1},
|
239
|
-
{"type":"20. CONVENTIONS","month":"Oct","count":1},
|
240
|
-
{"type":"20. CONVENTIONS","month":"Nov","count":1},
|
241
|
-
{"type":"20. CONVENTIONS","month":"Dec","count":1}
|
242
|
-
];
|
243
|
-
|
244
|
-
/* Bertin's order, grouping metrics by seasonal pattern. */
|
245
|
-
var order = [18, 17, 19, 7, 10, 3, 11, 12, 15, 13, 0, 1, 6, 8, 9, 16, 5, 2, 4, 14];
|
@@ -1,71 +0,0 @@
|
|
1
|
-
<html>
|
2
|
-
<head>
|
3
|
-
<title>Job Voyager</title>
|
4
|
-
<link type="text/css" href="../ex.css" rel="stylesheet"/>
|
5
|
-
<script type="text/javascript" src="../../protovis-d3.3.js"></script>
|
6
|
-
<script type="text/javascript" src="jobs.js"></script>
|
7
|
-
<style type="text/css">
|
8
|
-
|
9
|
-
#fig {
|
10
|
-
width: 860px;
|
11
|
-
height: 580px;
|
12
|
-
}
|
13
|
-
|
14
|
-
</style>
|
15
|
-
</head>
|
16
|
-
<body>
|
17
|
-
<div id="center"><div id="fig">
|
18
|
-
<script type="text/javascript+protovis">
|
19
|
-
|
20
|
-
/* Flatten the tree into an array to faciliate transformation. */
|
21
|
-
var jobs = pv.flatten(jobs)
|
22
|
-
.key("job")
|
23
|
-
.key("gender", function(i) i.charAt(0))
|
24
|
-
.key("year", function(i) years[i])
|
25
|
-
.key("people")
|
26
|
-
.array();
|
27
|
-
|
28
|
-
/* Compute per-year and per-job totals. */
|
29
|
-
var sumByYear = pv.nest(jobs)
|
30
|
-
.key(function(d) d.year)
|
31
|
-
.rollup(function(v) pv.sum(v, function(d) d.people)),
|
32
|
-
sumByJob = pv.nest(jobs)
|
33
|
-
.key(function(d) d.gender + d.job)
|
34
|
-
.rollup(function(v) pv.sum(v, function(d) d.people));
|
35
|
-
|
36
|
-
var w = 800,
|
37
|
-
h = 480,
|
38
|
-
x = pv.Scale.linear(years).range(0, w),
|
39
|
-
y = pv.Scale.linear(0, sumByYear[2000]).range(0, h),
|
40
|
-
c = pv.Scale.ordinal("men", "women").range("#33f", "#f33")
|
41
|
-
a = pv.Scale.linear(pv.values(sumByJob)).range(.4, .8);
|
42
|
-
|
43
|
-
var vis = new pv.Panel()
|
44
|
-
.width(w)
|
45
|
-
.height(h)
|
46
|
-
.margin(30);
|
47
|
-
|
48
|
-
vis.add(pv.Rule)
|
49
|
-
.data(x.ticks())
|
50
|
-
.left(x)
|
51
|
-
.strokeStyle("#ccc")
|
52
|
-
.anchor("bottom").add(pv.Label);
|
53
|
-
|
54
|
-
vis.add(pv.Rule)
|
55
|
-
.bottom(0);
|
56
|
-
|
57
|
-
var area = vis.add(pv.Layout.Stack)
|
58
|
-
.layers(pv.nest(jobs).key(function(d) d.gender + d.job).entries())
|
59
|
-
.values(function(d) d.values)
|
60
|
-
.x(function(d) x(d.year))
|
61
|
-
.y(function(d) y(d.people))
|
62
|
-
.order("reverse")
|
63
|
-
.offset("expand")
|
64
|
-
.layer.add(pv.Area)
|
65
|
-
.fillStyle(function(d, p) c(d.gender).alpha(a(sumByJob[p.key])));
|
66
|
-
|
67
|
-
vis.render();
|
68
|
-
|
69
|
-
</script>
|
70
|
-
</div></div></body>
|
71
|
-
</html>
|