Curran Kelleher
Curran Kelleher
Very nice!
Personally, I think so! This would make a nice addition to the library, and it seems to be a non-breaking change. I'm not able to merge PRs as I'm not...
Someone should totally build an example with this that produces Minard's "Napoleon's March on Moscow" map. [](https://www.edwardtufte.com/tufte/posters)
Also I wonder how close this gets us to being able to automatically produce shapes like this. [](https://cartographia.wordpress.com/2008/06/09/minards-map-of-british-coal-exports/)
How would that be defined? In my experience each university defines semesters slightly differently. Is there a standard definition for semesters?
Are JavaScript Date objects able to faithfully represent B.C./BCE or pre-1000 years?
@mbostock Very interesting! Thank you for clarifying.
That would be neat! The next step is to dig up their source code. I found this, which looks like the definitions for these: https://github.com/mwaskom/seaborn/blob/6fdf253393c27f9f2f124c63cc50351f94ca4761/seaborn/cm.py#L1565 The next step would be...
Strawman API proposal: ```js const filteredData = d3.memoize( // The first argument is the function to be memoized, just like React's useMemo. () => data.filter( ... some logic that uses...
That would work, but not in the context of hot reloading (`d3.local` uses a new ID on each run). Here's a strawman implementation that works under hot reloading as well:...