-
What's the expected output here?
```python
In [16]: i = pd.date_range('20130101', periods=3, tz='US/Eastern')
In [17]: i2 = pd.Index([pd.NaT, pd.NaT] + i[2:].tolist())
In [18]: i.where(pd.no…
-
**What are you trying to achieve?**
When the specification and the SDK documentation mention gauge, histogram, counter, and exponential histogram, it uses different terms to refer to the same conce…
-
Related to #26 I'm adding an example here, derived from [this vignette](https://stephenslab.github.io/mashr/articles/flash_mash.html).
Simulate some data
```r
library(ashr)
library(mashr)
set…
-
I would like to have a spline that starts with predicted value of 0 and ends at predicted value of 1 (outside of x-range) with slope (or asymptotic slope) equal to zero.
example spline fit for rese…
-
If I have a xarray DataArray, that has x-coordinates in descending order, and I try to crop the DataArray using
`da.sel(x=slice(10,50))`, it gives me empty DataArray. If I use
`da.sel(x=slice(50,1…
-
Currently, `quanta::Instant` is represented as a single `u64` value. Will `Instant`s ever be 0? If we're reasonably confident that `Instant`s with the value 0 will never be generated, we may want to c…
hawkw updated
2 years ago
-
Let's imagine a dungeon. You have one chest available in the front. It's necessarily a key. But then you have two doors.
If you say that the doors are accessible with a single key, then a player ma…
-
We have our left and rights switched round in `*-monoʳ-≤`, `*-monoʳ-≤-pos`. It would be kind of good if we had definitions for `Monotonic`/`LeftMonotonic`/`RightMonotonic` etc. in `Relation.Binary.Def…
-
There are many useful relations between shapes, such as:
1) `∆^2` is a retract of `∆^1 x ∆^1`
2) `∆^1` is isomorphic to the subshape `(t,s) -> s=0` of `\Lambda`
3) More specifically, the pair `(∆…
-
Hello statsmodels community,
I am currently working on a project that involves modeling ordinal outcomes where the proportional odds (parallel lines) assumption does not hold. Specifically, I need …