Eshin Jolly
Eshin Jolly
# Looking towards the future __Please contribute if you can!__ Developing and maintaining this package and so far been primarily performed by myself. I've had some helpful contributions from various...
Currently a user needs to manually deal with NaNs, e.g. by dropping the rows or filling them with some values in pandas (e.g. `.fillna(0)`). Would be nice to have a...
Should add an option to use t-statistics from first-level OLS models instead of just coefficients. This has the effect if implicitly down-weighting noisy first-level estimates based on their standard-errors. However,...
Thanks for the great package! I was wondering if it's currently possible to guard a route using an asynchronous function. It doesn't seem to work with the implementation I have...
Addresses: https://github.com/ejolly/pymer4/issues/78
@ljchang after chatting with @TiankangXie it looks like we can fairly easily roll our own `read_video` function because `torch` also provides a lower level API with their [`VideoReader`](https://pytorch.org/vision/stable/generated/torchvision.io.VideoReader.html#torchvision.io.VideoReader) class. Just...
This PR adds support for the following additional MNI templates: - 2009c 1mm and 2mm - used by fmriprep - 2009a 1mm and 2mm - used my nilearn Our current...
Our `stats.procrustes` is literally just the source code for `scipy.spatial.procrustes` so we should replace it with an import: https://github.com/cosanlab/nltools/blob/8f034dbbbb788fc09cda9be3bd26cdf5eb5e421f/nltools/stats.py#L1435