Jiwoo Lee
Jiwoo Lee
Updated skipna test: - xCDAT test with a real world data: [test_skipna_20250409.pdf](https://github.com/user-attachments/files/19673209/test_skipna_20250409.pdf) - Comparison with CDAT: [test_skipna_20250409-cdms2-test.pdf](https://github.com/user-attachments/files/19673210/test_skipna_20250409-cdms2-test.pdf) Conclusion: the `skipna` parameter is working as expected. CDAT uses `skipna=True` approach, which...
> Thank you Jiwoo! I will do a final review and merge soon. @tomvothecoder thanks! the notebooks were added to the validation repo, see https://github.com/xCDAT/xcdat-validation/pull/58
The new parameter `min_weight` is working as expected for `spatial.average`. Parameter name is straightforward. Please see the detailed testing with a real world data -- HadISST from obs4MIPs, which has...
`climatology` and `departures` seems not having `min_weight` parameter added. Can they have it as like `group_average` for consistency?
> ```python > ds.temporal.group_average('ts', freq='year', min_weight=0.5) > ds.temporal.climatology('ts', freq='year', min_weight=0.5) > ds.temporal.departures('ts', freq='year', min_weight=0.5) > ``` Hi @tomvothecoder, the first line of the above runs without error, but the following...
It looks like "> min_weight" being used, wondering rather ">= min_weight" could be used. For example, when `min_weight=1` (consider grid with no missing time step), I get an empty field...
BTW, I have confirmed that the following lines are working without error (changed `freq` to `month` as a follow up of https://github.com/xCDAT/xcdat/pull/683#issuecomment-3177123910 -- thanks @tomvothecoder and @pochedls for the comments!):...
@tomvothecoder I put the input data here in NERSC, can you check if you can access to it? /pscratch/sd/l/lee1043/temporary/ts_mon_HadISST-1-1_PCMDI_gn_187001-202501.nc
I like this idea!
Hi, thank you for making the efforts for adding this parallel coordinate plot capability to bokeh. I was not very successful at running the example script, [`parallel_plot.py`](https://github.com/bokeh/bokeh/blob/branch-2.2/examples/custom/parallel_plot/parallel_plot.py), could you please...