James Bourbeau

Results 190 comments of James Bourbeau

This looks like a `dask-gateway` ticket, so transferring to the `dask/dask-gateway` repo

Gentle ping @alimanfoo @jakirkham whenever you get a moment post-CZI application madness ; )

That's a good questions. I'm not sure whether or not it makes sense for `zarr` to support these cases. Do you have a sense for this? One option would be...

For reference, here's an example of a rendered Jupyter notebook in a sphinx docs page with a binder link https://examples.dask.org/dataframe.html

The notebook would be run as part of the documentation build process, so the tutorial should automatically remain up to date with the latest code changes. That said, adding a...

Yeah, that would be much appreciated : ) Thanks @andrewfulton9, feel free to ping me if you have any questions

Good point, thanks for bringing that up @andrewfulton9. We should make sure to include those examples in the notebook, but skip their actual execution. If there's a way we could...

@abergou does using `fill_value=0` give you an equivalent result, but without the warning? ```python import numpy import zarr group = zarr.open() group.create('foo', dtype=[('a', int), ('b', int)], fill_value=0, shape=(10, 10)) ```

Ah, I see. Then how about passing a tuple for the `fill_value` that specifies the fill value for the structured array. For example, here's a slightly modified version of your...

Perhaps the new `--strict` option (xref https://github.com/airspeed-velocity/asv/pull/865) would be of use in the case that a benchmark segfaults