-
**Minimal Complete Verifiable Example**:
```python
import dask.dataframe as dd
import numpy as np
arr = np.arange(10)
series = dd.from_array(arr)
series + arr
```
```python
--------------…
-
Let's turn on default `check_contents` of index dtype in `csr_array()` while adding a new keyword argument to turn it off. Something like:
```csr_array((data, coords), auto_index_dtype=False)```
…
-
numpy returns scalars instead of 0d arrays:
```python
import numpy as np
import array_api_strict as xps
xps.mean(xps.asarray(4, dtype=xps.float32)).__iadd__(1)
np.mean(np.asarray(4, dtype=np.…
-
When creating an instance of `Function`, the user should be able to indicate the evaluation style. The main evaluation styles are the following:
```python
# NUMPY or UNIVERSAL or SEPARATE or MULTI…
-
**Code for reproduction**
```python
from pycromanager import Studio
import numpy as np
h,w = 512,512
img = np.ones((h,w),dtype=np.int16)
mm = Studio(convert_camel_case=False)
…
-
### Issue Report Checklist
Checklist checked
## Problem Description
So filtering pandas dfs works fine, but there are no options for this for numpy arrays. Would be nice to add this to Spyder…
-
For FPGA execution of OpenCL kernels, the board expects 64-byte aligned host arrays. However, there seems to be no way to get numpy arrays to obey custom alignments (It seems the inbuilt ALIGNMENT len…
-
Hi,
`numpy.load` with memory-mapped file support is great, however the argument `mmap_mode` is silenty ignored when the file being loaded is anything else other than a `.npy` file. I need to combine …
-
We have support for loading Pandas Dataframe, we should do the same for NumPy arrays, or list of lists.
-
### Report
A later release of AnnData disallows pandas.core.arrays. Is this a false positive from their side (since numpy.ndarray _is_ allowed) or should we change dummy_anndata?
```python
impo…