Joe Hamman
Joe Hamman
Current `regplot` behavior when `lowess=True` is to ignore the confidence interval (`ci`) and bootstrap (`n_boot`) keyword arguments (example below): ``` python sns.regplot('obs', 'mod', data=data, lowess=True, ci=95, n_boot=1000) ``` Any thoughts...
How are pre-release versions intended to be sorted in this library? Take this simple test: ```go package main import ( "fmt" "github.com/coreos/go-semver/semver" ) func main() { raw := []string{"0.11.0-20.g070e4a9", "0.12.0",...
@JiaweiZhuang - I'm reviving this conversation from #22. Where do you fall on this issue now?
This comes from the discussion in #22. It is intended to help users specify masks for the valid cells in the source and/or destination grids. It does this in the...
Previous issues have discussed supporting dask enabled parallel regridding (e.g. #3). This seems to be working for the threaded scheduler but not for the distributed scheduler. It seems like this...
I have a use case where I am regridding from/to grids that have missing values in them (water mask over land). I'm curious how xESMF is treating these grid cells....
I'm wondering what it would take to support using ESMF's unstructured grids with xESMF. I had a conversation with @bekozi today where we discussed this briefly but we weren't sure...
Has anyone extended the `geopy.vincenty` or `geopy.great_circle` functionality to include a nearest neighbor mapping algorithm? I'm thinking it would be nice to put something together like [`scipy.spatial.cKDTree.query`](http://docs.scipy.org/doc/scipy/reference/generated/scipy.spatial.cKDTree.query.html#scipy.spatial.cKDTree.query).
VIC has been using Travis-CI.org as its CI service for a number of years now. This past summer, that service was shut down. travis-ci.com is the replacement service but, as...
The CESM and Image drivers both have a block of code in them that looks like this: ``` C for (v = 0; v < options.NVEGTYPES; v++) { vidx =...