-
It'd be useful for this tool to support to arrays with some sort of flow to recurse into an array with an "add another" prompt once each array item has been fully recursively filled out? It's not the …
-
```
What steps will reproduce the problem?
1. Use Java 1.6, Groovy 2.1.9, and gprof 0.3.0-groovy-2.1
2. Run this code:
profile {
(1..100).each {
it * it
}
}.prettyPrint()
…
-
## 1. General summary of the issue
Easiest shown by demonstration:
```powershell
$a = @{ One = 1; Two = 2 }
$b = $a.Keys
$b | Should -Be $a.Keys
```
Note that `$a.Keys` is of type `[Syste…
-
### Is your feature request related to a problem?
If I have a DataArray of values:
```python
da = xr.DataArray([0, 1, 2, 3, 4, 5])
```
And I'd like to replace `to_replace=[1, 3, 5]` by `value…
Huite updated
4 months ago
-
I had a quick look at the code (not a full review yet).
I saw that you use `Obj.magic` to implement a heterogenous array using an OCaml array.
Do we know if this is sound? I am thinking about su…
gadmm updated
11 months ago
-
/home/bjorn/.local/lib/python3.8/site-packages/flat_table/_norm.py:92: FutureWarning: The pandas.np module is deprecated and will be removed from pandas in a future version. Import numpy directly inst…
-
The way GL JS represents geometry data in the code is highly inconsistent, where different parts of the code both produce and consume it in subtly different formats. This leads to a lot of superflous …
-
A use case was suggested to me for explicit array access within strings. This is when you want to combine mathematically defined and recorded data into a model. For example, you might have recorded lo…
-
Need to implement following functions as described here [Array manipulation routines](https://numpy.org/doc/stable/reference/routines.array-manipulation.html)
### Basic operations
- [x] copyto(dst…
shssf updated
4 months ago
-
For some use cases, it will be valuable to return the spatial representation of an estimator's `transform` method where that estimator inherits from sklearn's `TransformerMixin` (for example, sklearn'…