graphite
graphite copied to clipboard
A data visualization library for Racket.
It was looping over a hashtable so there isn't a comprehensible order idk if `#:sort-by` is a good key name or if there's a different convention
Currently, renderers that _should_ have support for qualitative variables do not. While some renderers only make sense for quantitative variables (`lines` for a time series, `histogram`, ...), the notable exceptions...
Pretty much the title. Currently the `error-bars` renderer takes a series of residuals from the data-frame. That's fine, and useful, but the `fit` renderer should also be able to calculate...
Currently, you can only facet on one variable. ggplot supports `facet_grid`, which allows faceting on two variables. For example, in the case of socviz Fig 4.5:  This likely would...
Currently, only some of the renderers (`points`, `lines`, `density`) support aesthetics like `#:discrete-color`, only `points` supports `#:continuous-color`, et cetera. While setting certain aesthetics to some renderers does not make sense,...
Hi! I just noticed, that the docs of graphite are not (no longer?) available on . shows an exception: > Page not found ```scheme ([(uncaught-exception-handler)](https://docs.racket-lang.org/) (*(+(*)(*(+(*)(*)(*)(*)(*))(+(*)(*)(*)(*)(*))(+(*)(*)(*)(*))))(+(*)(*)(*)(*)))) uncaught exception: 404 ```...
See https://pkgs.racket-lang.org/package/graphite
https://github.com/ralsei/graphite/blob/6155173645965ad5a102b2d96f1bef79f82c6b6f/graphite-lib/bar.rkt#L68 I think this line of code makes the hash-table overcount, reporting 10 observations if there were only 9, for example, since `add1` is applied to the default `1` when...