Anderson Banihirwe

Results 47 issues of Anderson Banihirwe

It appears that #122 may have broken other functionality. For example, when a dataset has decoded time values, resample fails: ```python cam_chem Dimensions: (ilev: 33, lev: 32, nbnd: 2, ncol:...

bug

Calling: ```python esmlab.resample(dset(), freq='mon') ``` where dset() is already monthly resolution Expected:To do nothing. However, it returns a dataset with mucked up time axis and 12 not 24 values! **Minimal...

bug

```python esmlab.resample(esmlab.resample(dset(), freq='mon'), freq='mon') ``` ```python-traceback --------------------------------------------------------------------------- ValueError Traceback (most recent call last) in ----> 1 esmlab.resample(esmlab.resample(dset(), freq='mon'), freq='mon') /gpfs/u/home/mclong/codes/esmlab/esmlab/core.py in resample(dset, freq, weights, time_coord_name, method) 774 775 if freq...

bug

# `xarray_extras` xref: https://xarray-extras.readthedocs.io/en/latest/index.html ## Cumulatives - [ ] cummean - [ ] compound_sum - [ ] compound_prod - [ ] compound_mean ## Interpolate - [ ] splrep - [...

- [ ] `cdfbin_p()` : Calculates the binomial density of a cumulative distribution function. - [ ] `cdfbin_pr()` : Calculates the probability of success of each trial of a cumulative...

- [x] `compute_mon_climatology()` : Calculates long term monthly means (monthly climatology) from monthly data - [x] `compute_ann_climatology()` - [ ] `compute_daily_anomaly()` : Calculates daily anomalies from a daily data climatology....

Currently, most of the plotting routines involve doing some computation internally before plotting the results. This approach seems to work fine when dealing with small datasets. However, it becomes a...