Dominik Schröder

Results 6 issues of Dominik Schröder

Hi, I am using SwiftSlash within a task group ```swift try await withThrowingTaskGroup(of: Void.self) { group for cmd in cmds { group.addTask { let commandResult = try await Command(bash:cmd).runSync() guard...

This is a pull request addressing https://github.com/observablehq/plot/issues/1940, see also the discussion in https://talk.observablehq.com/t/normalised-histogram-in-observable-plot/8576 Basically I added a new `reduceDensity` reducer which computes the density per series/facet. This is slightly different...

This is a pull request addressing https://github.com/juba/pyobsplot/issues/23 Supported output formats are - pdf - png - svg (including title, caption etc) ### Example ``` from pyobsplot import Obsplot, Plot import...

### Description If I display an external svg using something like ``` #figure( image("typst.svg"), caption: [A picture with background color], ) ``` and the svg file has a background-color set...

bug
svg
upstream

## PR Description This is a suggested fix for https://github.com/vega/vega-lite/issues/5937 and potentially also https://github.com/vega/vega-lite/issues/8675 and https://github.com/vega/altair/issues/3588 and https://github.com/vega/altair/issues/3481 I included two examples demonstrating the bug. For instance the spec ```json...

### What happened? Faceting by `pl.Categorical` columns results in wrong facets ```python alt.Chart( pl.from_pandas(vega_datasets.data.cars()).with_columns( pl.col("Origin").cast(pl.Categorical), pl.col("Cylinders").cast(pl.String).cast(pl.Categorical), ) ).mark_point().properties(width=150, height=150).encode( x="Horsepower", y="Miles_per_Gallon", shape="Cylinders", color=alt.Color("Origin").scale(scheme="category10"), ).facet(row="Origin", column="Cylinders") ``` ![facets-not-ok](https://github.com/user-attachments/assets/85fea3fb-c8fa-44d2-92a9-733023c21a75) I am not...

bug