|
1 | 1 | #  |
2 | 2 |
|
3 | | -[Tutorial](https://github.com/gampleman/elm-visualization/blob/master/docs/INTRO.md) | [Docs](https://package.elm-lang.org/packages/gampleman/elm-visualization/2.4.2/) | [Examples](https://elm-visualization.netlify.app/) | [GitHub](https://github.com/gampleman/elm-visualization) | [Changelog](https://github.com/gampleman/elm-visualization/releases) | `#visualization` on [Elm slack](https://elmlang.herokuapp.com) |
| 3 | +[Tutorial](https://github.com/gampleman/elm-visualization/blob/master/docs/INTRO.md) | [Docs](https://package.elm-lang.org/packages/gampleman/elm-visualization/2.4.3/) | [Examples](https://elm-visualization.netlify.app/) | [GitHub](https://github.com/gampleman/elm-visualization) | [Changelog](https://github.com/gampleman/elm-visualization/releases) | `#visualization` on [Elm slack](https://elmlang.herokuapp.com) |
4 | 4 |
|
5 | 5 | This project is designed to give you all the tools needed to build data visualizations. |
6 | 6 | It is not a charting library in the sense that you have pre-bundled Excel-style |
@@ -34,52 +34,52 @@ You can use [this Ellie](https://ellie-app.com/p6X5hXxcdRCa1) to run the example |
34 | 34 |
|
35 | 35 | ## What's included? |
36 | 36 |
|
37 | | -### [Scales](https://package.elm-lang.org/packages/gampleman/elm-visualization/2.4.2/Scale/) |
| 37 | +### [Scales](https://package.elm-lang.org/packages/gampleman/elm-visualization/2.4.3/Scale/) |
38 | 38 |
|
39 | 39 | Most of the time you have data that has properties that you want to display on the |
40 | 40 | screen, however these properties typically aren't in pixels. Scales solve this |
41 | 41 | fundamental problem by giving you convenient ways to transform raw data into positions, |
42 | 42 | sizes, colors, labels and other ways to display data. |
43 | 43 |
|
44 | | -### [Axis](https://package.elm-lang.org/packages/gampleman/elm-visualization/2.4.2/Axis/) |
| 44 | +### [Axis](https://package.elm-lang.org/packages/gampleman/elm-visualization/2.4.3/Axis/) |
45 | 45 |
|
46 | 46 | A component that allows you to visualize a Scale. Those little ticks that describe |
47 | 47 | the dimensions of a plot. |
48 | 48 |
|
49 | | -### [Shapes](https://package.elm-lang.org/packages/gampleman/elm-visualization/2.4.2/Shape/) |
| 49 | +### [Shapes](https://package.elm-lang.org/packages/gampleman/elm-visualization/2.4.3/Shape/) |
50 | 50 |
|
51 | 51 | This module gives you ways to draw some fundamental shapes used in data visualization, including lines (as in line or area charts), |
52 | 52 | as well as arcs (as in pie charts). |
53 | 53 |
|
54 | | -### [Force Layout](https://package.elm-lang.org/packages/gampleman/elm-visualization/2.4.2/Force/) |
| 54 | +### [Force Layout](https://package.elm-lang.org/packages/gampleman/elm-visualization/2.4.3/Force/) |
55 | 55 |
|
56 | 56 | Use a simulation of physical forces to do layout. Suitable for i.e. network graphs. |
57 | 57 |
|
58 | | -### [Hierarchy](https://package.elm-lang.org/packages/gampleman/elm-visualization/2.4.2/Hierarchy/) |
| 58 | +### [Hierarchy](https://package.elm-lang.org/packages/gampleman/elm-visualization/2.4.3/Hierarchy/) |
59 | 59 |
|
60 | 60 | Layout algorithms for dealing with trees. |
61 | 61 |
|
62 | | -### [Interpolation](https://package.elm-lang.org/packages/gampleman/elm-visualization/2.4.2/Interpolation/) |
| 62 | +### [Interpolation](https://package.elm-lang.org/packages/gampleman/elm-visualization/2.4.3/Interpolation/) |
63 | 63 |
|
64 | 64 | Smoothly transition between pairs of values. Useful for animation, or generating gradients of values. |
65 | 65 |
|
66 | | -### [Transition](https://package.elm-lang.org/packages/gampleman/elm-visualization/2.4.2/Transition/) |
| 66 | +### [Transition](https://package.elm-lang.org/packages/gampleman/elm-visualization/2.4.3/Transition/) |
67 | 67 |
|
68 | 68 | Build complex animations using Interpolation. |
69 | 69 |
|
70 | | -### [Histogram](https://package.elm-lang.org/packages/gampleman/elm-visualization/2.4.2/Histogram/) |
| 70 | +### [Histogram](https://package.elm-lang.org/packages/gampleman/elm-visualization/2.4.3/Histogram/) |
71 | 71 |
|
72 | 72 | Compute histograms of data. |
73 | 73 |
|
74 | | -### [Brush](https://package.elm-lang.org/packages/gampleman/elm-visualization/2.4.2/Brush/) |
| 74 | +### [Brush](https://package.elm-lang.org/packages/gampleman/elm-visualization/2.4.3/Brush/) |
75 | 75 |
|
76 | 76 | Interactively select subregions of a dataset. |
77 | 77 |
|
78 | | -### [Zoom](https://package.elm-lang.org/packages/gampleman/elm-visualization/2.4.2/Zoom/) |
| 78 | +### [Zoom](https://package.elm-lang.org/packages/gampleman/elm-visualization/2.4.3/Zoom/) |
79 | 79 |
|
80 | 80 | Build pan and zoom user interactions. |
81 | 81 |
|
82 | | -### [Statistics](https://package.elm-lang.org/packages/gampleman/elm-visualization/2.4.2/Statistics/) |
| 82 | +### [Statistics](https://package.elm-lang.org/packages/gampleman/elm-visualization/2.4.3/Statistics/) |
83 | 83 |
|
84 | 84 | Process data to extract useful insights for visualizations. |
85 | 85 |
|
|
0 commit comments