mbostock | 4 months ago | on: How to make a Smith chart
mbostock's comments
mbostock | 7 months ago | on: Observable Notebooks 2.0 Technology Preview
mbostock | 7 months ago | on: Observable Notebooks 2.0 Technology Preview
mbostock | 1 year ago | on: Observable Framework 1.9
https://github.com/observablehq/framework/pull/129
but this approach stalled because it doesn’t implement validation of TypeScript: the TypeScript annotations are simply ignored. I felt this defeats the point of using TypeScript. We probably need to use tsc instead of esbuild to get type checking. Hints welcome!
mbostock | 1 year ago | on: Observable Framework 1.9
mbostock | 1 year ago | on: D3 in Depth
mbostock | 1 year ago | on: A flat map with the least error possible: The Gott-Goldberg-Vanderbei projection
https://observablehq.com/@d3/azimuthal-equidistant-hemispher...
mbostock | 2 years ago | on: Interesting ideas in Observable Framework
As for inputs-driving-data-loaders, that does go against the grain a bit since Framework favors static data snapshots so that the built site is self-contained and performant. But a technique that works well is to generate Parquet files in data loaders representing the superset of data that you want to interact with, and then using DuckDB/SQL in the client to extract the subset you want to visualize. This tends to perform well, though obviously it’s dependent on the size of the superset you want to interact with.
mbostock | 2 years ago | on: Interesting ideas in Observable Framework
mbostock | 2 years ago | on: Interesting ideas in Observable Framework
mbostock | 2 years ago | on: Interesting ideas in Observable Framework
mbostock | 2 years ago | on: How to optimally trap points in high-dimensional spaces inside ellipsoids
https://observablehq.com/@d3/d3-packenclose
I still haven’t quite figured out how to make D3’s implementation robust, though. Volodymyr Agafonkin’s robust-predicated would probably help… https://github.com/mourner/robust-predicates
mbostock | 2 years ago | on: Observable 2.0, a static site generator for data apps
mbostock | 2 years ago | on: Observable 2.0, a static site generator for data apps
mbostock | 2 years ago | on: Observable 2.0, a static site generator for data apps
But in general the use case we’re targeting is a shared data app, dashboard, or report. Not something just for you individually, or something ephemeral (that you look at in real-time during training). For example, Framework would work well for sharing a report or dashboard evaluating the performance of the latest models you’ve built with your team.
mbostock | 2 years ago | on: Observable 2.0, a static site generator for data apps
mbostock | 2 years ago | on: Observable 2.0, a static site generator for data apps
https://observablehq.com/plot/marks/raster https://observablehq.com/plot/marks/contour https://observablehq.com/plot/marks/cell
We generally recommend stacked bar charts over pie and donut charts, so we haven’t prioritized those. But you can already implement them using custom marks, and there’s even a hacky way of doing them using Plot’s map projection system.
https://observablehq.com/@observablehq/pie-to-donut-chart
I don’t understand your comment about the “D3 example.” If you’re looking for Plot examples, you can find them linked from the Plot documentation and the gallery:
https://observablehq.com/@observablehq/plot-gallery
Plot is designed to be extended with JavaScript (rather than a non-JavaScript DSL such as Vega-Lite), such as for custom marks and data transforms. So you might occasionally see other libraries being used together with Plot.
mbostock | 2 years ago | on: Observable 2.0, a static site generator for data apps
mbostock | 2 years ago | on: Observable 2.0, a static site generator for data apps
mbostock | 2 years ago | on: Observable 2.0, a static site generator for data apps