Reusable Charting with D3

I love the D3js framework, however it’s not initially intuitive how to create charts that have reusable components. After working extensively with this framework over the last few months, I’ve found a good way to introduce a little more extensibility into the default approach. For the following examples we use …

One Dimensional Maps

Creating one-dimensional maps is a very easy and straightforward process that can be used to explore chaotic behavior. Given some function we take an initial value and use the iterative process $$ x_{n+1} = f\left(x_n\right) $$ One popular map to explore is the Logistic Map, defined as $$ x_{n+1} = …