issue_comments
40 rows where user = 56925856 sorted by updated_at descending
This data as json, CSV (advanced)
Suggested facets: issue_url, reactions, created_at (date), updated_at (date)
user 1
- AndrewILWilliams · 40 ✖
id | html_url | issue_url | node_id | user | created_at | updated_at ▲ | author_association | body | reactions | performed_via_github_app | issue |
---|---|---|---|---|---|---|---|---|---|---|---|
850843957 | https://github.com/pydata/xarray/pull/5390#issuecomment-850843957 | https://api.github.com/repos/pydata/xarray/issues/5390 | MDEyOklzc3VlQ29tbWVudDg1MDg0Mzk1Nw== | AndrewILWilliams 56925856 | 2021-05-29T14:37:48Z | 2021-05-31T10:27:06Z | CONTRIBUTOR | @willirath this is cool, but I think it doesn't explain why the tests fail. Currently @dcherian, I think I've got it to work, but you need to account for the length(s) of the dimension you're calculating the correlation over. (i.e. This latest commit does this, but I'm not sure whether the added complication is worth it yet? Thoughts welcome. ```python3 def _mean(da): return (da.sum(dim=dim, skipna=True, min_count=1) / (valid_count)) dim_length = da_a.notnull().sum(dim=dim, skipna=True) def _mean_detrended_term(da): return (dim_length * da / (valid_count)) cov = _mean(da_a * da_b) - _mean_detrended_term(da_a.mean(dim=dim) * da_b.mean(dim=dim)) ``` |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Improvements to lazy behaviour of `xr.cov()` and `xr.corr()` 904153867 | |
850690985 | https://github.com/pydata/xarray/pull/5390#issuecomment-850690985 | https://api.github.com/repos/pydata/xarray/issues/5390 | MDEyOklzc3VlQ29tbWVudDg1MDY5MDk4NQ== | AndrewILWilliams 56925856 | 2021-05-28T21:43:52Z | 2021-05-28T21:44:12Z | CONTRIBUTOR |
I think you'd still have to normalize the second term by |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Improvements to lazy behaviour of `xr.cov()` and `xr.corr()` 904153867 | |
850556738 | https://github.com/pydata/xarray/pull/5390#issuecomment-850556738 | https://api.github.com/repos/pydata/xarray/issues/5390 | MDEyOklzc3VlQ29tbWVudDg1MDU1NjczOA== | AndrewILWilliams 56925856 | 2021-05-28T17:12:52Z | 2021-05-28T17:14:08Z | CONTRIBUTOR | @willirath this is great stuff, thanks again! So generally it looks like the graph is more efficient when doing operations of the form:
than doing
or like what I've implemented (see screenshot)? ```python3 intermediate = (X * Y) - (X.mean('time') * Y.mean('time')) intermediate.mean('time') ``` If so, it seems like the most efficient(?) way to do the computation in _cov_corr() is to combine it all into one line? I can't think of how to do this though... |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Improvements to lazy behaviour of `xr.cov()` and `xr.corr()` 904153867 | |
850276619 | https://github.com/pydata/xarray/pull/5390#issuecomment-850276619 | https://api.github.com/repos/pydata/xarray/issues/5390 | MDEyOklzc3VlQ29tbWVudDg1MDI3NjYxOQ== | AndrewILWilliams 56925856 | 2021-05-28T09:15:30Z | 2021-05-28T09:17:48Z | CONTRIBUTOR | @willirath , thanks for your example notebook! I'm still trying to get my head around this a bit though. Say you have ```python3 da_a = xr.DataArray( np.array([[1, 2, 3, 4], [1, 0.1, 0.2, 0.3], [2, 3.2, 0.6, 1.8]]), dims=("space", "time"), coords=[ ("space", ["IA", "IL", "IN"]), ("time", pd.date_range("2000-01-01", freq="1D", periods=4)), ], ).chunk() da_b = xr.DataArray( np.array([[0.2, 0.4, 0.6, 2], [15, 10, 5, 1], [1, 3.2, np.nan, 1.8]]), dims=("space", "time"), coords=[ ("space", ["IA", "IL", "IN"]), ("time", pd.date_range("2000-01-01", freq="1D", periods=4)), ], ).chunk() ``` The original computation in Whereas my alteration now has a graph more like this:
Am I correct in thinking that this is a 'better' computational graph? Because the original chunks are not passed onto later points in the computation? |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Improvements to lazy behaviour of `xr.cov()` and `xr.corr()` 904153867 | |
848612330 | https://github.com/pydata/xarray/pull/5284#issuecomment-848612330 | https://api.github.com/repos/pydata/xarray/issues/5284 | MDEyOklzc3VlQ29tbWVudDg0ODYxMjMzMA== | AndrewILWilliams 56925856 | 2021-05-26T09:19:50Z | 2021-05-26T09:19:50Z | CONTRIBUTOR | Hey both, I've added a test to check that dask doesn't compute when calling either @dcherian, regarding the |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Dask-friendly nan check in xr.corr() and xr.cov() 882876804 | |
838231568 | https://github.com/pydata/xarray/pull/5284#issuecomment-838231568 | https://api.github.com/repos/pydata/xarray/issues/5284 | MDEyOklzc3VlQ29tbWVudDgzODIzMTU2OA== | AndrewILWilliams 56925856 | 2021-05-11T10:28:08Z | 2021-05-12T20:45:00Z | CONTRIBUTOR | Thanks for that @dcherian ! I didn't know you could use print debugging on chunked operations like this! One thing actually: If I change ``` def _get_valid_values(da, other): da1, da2 = xr.align(da, other, join="outer", copy=False)
```
|
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Dask-friendly nan check in xr.corr() and xr.cov() 882876804 | |
837032429 | https://github.com/pydata/xarray/pull/5284#issuecomment-837032429 | https://api.github.com/repos/pydata/xarray/issues/5284 | MDEyOklzc3VlQ29tbWVudDgzNzAzMjQyOQ== | AndrewILWilliams 56925856 | 2021-05-10T17:44:29Z | 2021-05-10T17:44:29Z | CONTRIBUTOR | Hi @dcherian , just thinking about your suggestion for using ```python3 da_a = xr.DataArray( np.array([[1, 2, 3, 4], [1, 0.1, 0.2, 0.3], [2, 3.2, 0.6, 1.8]]), dims=("space", "time"), coords=[ ("space", ["IA", "IL", "IN"]), ("time", pd.date_range("2000-01-01", freq="1D", periods=4)), ], ).chunk({'time':1}) da_b = xr.DataArray( np.array([[0.2, 0.4, 0.6, 2], [15, 10, 5, 1], [1, 3.2, np.nan, 1.8]]), dims=("space", "time"), coords=[ ("space", ["IA", "IL", "IN"]), ("time", pd.date_range("2000-01-01", freq="1D", periods=4)), ], ).chunk({'time':1}) print(da_a)
print(da_b)
Define function to use in map_blocksdef _get_valid_values(da, other): da1, da2 = xr.align(da, other, join="inner", copy=False)
testoutp = da_a.map_blocks(_get_valid_values, args=[da_b]) print(outp.compute())
|
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Dask-friendly nan check in xr.corr() and xr.cov() 882876804 | |
760905338 | https://github.com/pydata/xarray/issues/4816#issuecomment-760905338 | https://api.github.com/repos/pydata/xarray/issues/4816 | MDEyOklzc3VlQ29tbWVudDc2MDkwNTMzOA== | AndrewILWilliams 56925856 | 2021-01-15T12:09:32Z | 2021-01-15T12:09:32Z | CONTRIBUTOR | Oh actually, I don't think this is a bug. Because I'm only interpolating over 1d coordinates, |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Possible bug with da.interp_like() 786839234 | |
676494680 | https://github.com/pydata/xarray/pull/4351#issuecomment-676494680 | https://api.github.com/repos/pydata/xarray/issues/4351 | MDEyOklzc3VlQ29tbWVudDY3NjQ5NDY4MA== | AndrewILWilliams 56925856 | 2020-08-19T15:25:16Z | 2020-08-19T15:25:16Z | CONTRIBUTOR |
My bad ;) |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Allow cov & corr to handle missing values 681528611 | |
673593388 | https://github.com/pydata/xarray/issues/4300#issuecomment-673593388 | https://api.github.com/repos/pydata/xarray/issues/4300 | MDEyOklzc3VlQ29tbWVudDY3MzU5MzM4OA== | AndrewILWilliams 56925856 | 2020-08-13T16:59:30Z | 2020-08-13T16:59:30Z | CONTRIBUTOR | cheers @TomNicholas , that's helpful. :) I've started messing with the idea in this Gist if you want to have a look. It's pretty hacky at the moment, but might be helpful as a testbed. (And a way of getting my head around how |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
General curve fitting method 671609109 | |
672084619 | https://github.com/pydata/xarray/issues/4300#issuecomment-672084619 | https://api.github.com/repos/pydata/xarray/issues/4300 | MDEyOklzc3VlQ29tbWVudDY3MjA4NDYxOQ== | AndrewILWilliams 56925856 | 2020-08-11T16:49:00Z | 2020-08-11T16:49:29Z | CONTRIBUTOR | @TomNicholas I'm a bit confused about how the Edit: It's been a hot day here, so apologies if this turns out to be a dumb q haha |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
General curve fitting method 671609109 | |
671442450 | https://github.com/pydata/xarray/issues/4300#issuecomment-671442450 | https://api.github.com/repos/pydata/xarray/issues/4300 | MDEyOklzc3VlQ29tbWVudDY3MTQ0MjQ1MA== | AndrewILWilliams 56925856 | 2020-08-10T16:01:06Z | 2020-08-10T16:01:06Z | CONTRIBUTOR | This sounds very cool! :) I'm not sure that I have much to add, but given @aulemahal 's good point about the complexity of rewriting Alternatively, given that |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
General curve fitting method 671609109 | |
634184361 | https://github.com/pydata/xarray/pull/4096#issuecomment-634184361 | https://api.github.com/repos/pydata/xarray/issues/4096 | MDEyOklzc3VlQ29tbWVudDYzNDE4NDM2MQ== | AndrewILWilliams 56925856 | 2020-05-26T18:02:14Z | 2020-05-26T18:02:14Z | CONTRIBUTOR | Also, could I ask a git question? Is there a way of getting a "clean" version of xarray to do PR branches off of without just re-forking? I've tried a few different suggestions on StackOverflow but just keen to know what other people's workflow is :) thanks again |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Corrcov typo fix 625064501 | |
634165154 | https://github.com/pydata/xarray/pull/4089#issuecomment-634165154 | https://api.github.com/repos/pydata/xarray/issues/4089 | MDEyOklzc3VlQ29tbWVudDYzNDE2NTE1NA== | AndrewILWilliams 56925856 | 2020-05-26T17:26:34Z | 2020-05-26T17:26:34Z | CONTRIBUTOR | @kefirbandi I didn't want to step on your toes, but I'm happy to put in a PR to fix the typo. :) |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
xr.cov() and xr.corr() 623751213 | |
633710066 | https://github.com/pydata/xarray/pull/4064#issuecomment-633710066 | https://api.github.com/repos/pydata/xarray/issues/4064 | MDEyOklzc3VlQ29tbWVudDYzMzcxMDA2Ng== | AndrewILWilliams 56925856 | 2020-05-25T20:38:49Z | 2020-05-25T20:38:49Z | CONTRIBUTOR | No problem ! Thanks everyone for helping me get up to speed :) |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Auto chunk 618828102 | |
633592183 | https://github.com/pydata/xarray/pull/4089#issuecomment-633592183 | https://api.github.com/repos/pydata/xarray/issues/4089 | MDEyOklzc3VlQ29tbWVudDYzMzU5MjE4Mw== | AndrewILWilliams 56925856 | 2020-05-25T14:13:46Z | 2020-05-25T14:13:46Z | CONTRIBUTOR |
Sweet! On second thought, I might leave it for now...the sun is too nice today. Can always have it as a future PR or something. :) |
{ "total_count": 1, "+1": 1, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
xr.cov() and xr.corr() 623751213 | |
633582528 | https://github.com/pydata/xarray/pull/4089#issuecomment-633582528 | https://api.github.com/repos/pydata/xarray/issues/4089 | MDEyOklzc3VlQ29tbWVudDYzMzU4MjUyOA== | AndrewILWilliams 56925856 | 2020-05-25T13:50:08Z | 2020-05-25T13:50:08Z | CONTRIBUTOR | One more thing actually, is there an argument for not defining |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
xr.cov() and xr.corr() 623751213 | |
633456698 | https://github.com/pydata/xarray/pull/4089#issuecomment-633456698 | https://api.github.com/repos/pydata/xarray/issues/4089 | MDEyOklzc3VlQ29tbWVudDYzMzQ1NjY5OA== | AndrewILWilliams 56925856 | 2020-05-25T08:44:36Z | 2020-05-25T10:55:29Z | CONTRIBUTOR |
Where do you mean sorry? Isn't this already there in corr()?
|
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
xr.cov() and xr.corr() 623751213 | |
633441816 | https://github.com/pydata/xarray/pull/4089#issuecomment-633441816 | https://api.github.com/repos/pydata/xarray/issues/4089 | MDEyOklzc3VlQ29tbWVudDYzMzQ0MTgxNg== | AndrewILWilliams 56925856 | 2020-05-25T08:11:05Z | 2020-05-25T08:12:48Z | CONTRIBUTOR | Cheers ! I've got a day off today so I'll do another pass through the changes and see if there's any low-hanging fruit I can improve (in addition to |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
xr.cov() and xr.corr() 623751213 | |
633286352 | https://github.com/pydata/xarray/pull/4089#issuecomment-633286352 | https://api.github.com/repos/pydata/xarray/issues/4089 | MDEyOklzc3VlQ29tbWVudDYzMzI4NjM1Mg== | AndrewILWilliams 56925856 | 2020-05-24T19:49:30Z | 2020-05-24T19:56:24Z | CONTRIBUTOR | One problem I came across here is that Current tests implemented are (in pseudocode...):
- [x] @keewis I tried reading the Hypothesis docs and got a bit overwhelmed, so I've stuck with example-based tests for now. |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
xr.cov() and xr.corr() 623751213 | |
633213547 | https://github.com/pydata/xarray/pull/4089#issuecomment-633213547 | https://api.github.com/repos/pydata/xarray/issues/4089 | MDEyOklzc3VlQ29tbWVudDYzMzIxMzU0Nw== | AndrewILWilliams 56925856 | 2020-05-24T10:59:43Z | 2020-05-24T11:00:53Z | CONTRIBUTOR | The current problem is that we can't use Pandas to fully test As such, I think it maybe just makes sense to test a few low-dimensional cases? Eg ```python3
So, while it's easy to check that a few individual points from I think it would also make sense to have some test cases where we don't use Pandas at all, but we specify the output manually? ```python3
Does this seem like a good way forward? |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
xr.cov() and xr.corr() 623751213 | |
633145887 | https://github.com/pydata/xarray/issues/3784#issuecomment-633145887 | https://api.github.com/repos/pydata/xarray/issues/3784 | MDEyOklzc3VlQ29tbWVudDYzMzE0NTg4Nw== | AndrewILWilliams 56925856 | 2020-05-23T21:58:49Z | 2020-05-23T21:58:49Z | CONTRIBUTOR | In a fit of covid-induced insanity, I've decided to have a crack at finishing up #3550 ! I'm playing around with the changes made by @r-beer at the moment, but I'm finding the tests quite confusing - I think they're wrong? But maybe someone could help me out with this? Here's something from
``` What I don't understand is, why would we expect the Pandas covariance or correlation functions to return anything remotely like the output of I wasn't sure whether to open a PR for this or not? I'm working on it but would require some help to set up some appropriate tests... |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Function for regressing/correlating multiple fields? 568378007 | |
632128807 | https://github.com/pydata/xarray/pull/4064#issuecomment-632128807 | https://api.github.com/repos/pydata/xarray/issues/4064 | MDEyOklzc3VlQ29tbWVudDYzMjEyODgwNw== | AndrewILWilliams 56925856 | 2020-05-21T14:49:37Z | 2020-05-21T14:49:37Z | CONTRIBUTOR | @keewis thanks for this! I've added what I think is a suitable test for |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Auto chunk 618828102 | |
632090407 | https://github.com/pydata/xarray/pull/4064#issuecomment-632090407 | https://api.github.com/repos/pydata/xarray/issues/4064 | MDEyOklzc3VlQ29tbWVudDYzMjA5MDQwNw== | AndrewILWilliams 56925856 | 2020-05-21T13:36:41Z | 2020-05-21T13:36:41Z | CONTRIBUTOR |
@dcherian Thanks for the tip:) Quick question: Is there a reason why you're specifying the |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Auto chunk 618828102 | |
632035116 | https://github.com/pydata/xarray/pull/4064#issuecomment-632035116 | https://api.github.com/repos/pydata/xarray/issues/4064 | MDEyOklzc3VlQ29tbWVudDYzMjAzNTExNg== | AndrewILWilliams 56925856 | 2020-05-21T11:30:01Z | 2020-05-21T11:30:01Z | CONTRIBUTOR | Cheers! I forgot about the tests, will add them this week or next hopefully |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Auto chunk 618828102 | |
629390609 | https://github.com/pydata/xarray/pull/4064#issuecomment-629390609 | https://api.github.com/repos/pydata/xarray/issues/4064 | MDEyOklzc3VlQ29tbWVudDYyOTM5MDYwOQ== | AndrewILWilliams 56925856 | 2020-05-15T17:40:39Z | 2020-05-15T17:41:25Z | CONTRIBUTOR | @dcherian do you have any idea about this
Edit: thanks to everyone for your help so far! |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Auto chunk 618828102 | |
629346101 | https://github.com/pydata/xarray/pull/4064#issuecomment-629346101 | https://api.github.com/repos/pydata/xarray/issues/4064 | MDEyOklzc3VlQ29tbWVudDYyOTM0NjEwMQ== | AndrewILWilliams 56925856 | 2020-05-15T16:11:04Z | 2020-05-15T16:22:24Z | CONTRIBUTOR | Okay so I've traced the error back to the Normally, when using the ```python
However, when I use the changes I've made to ```python
Which means that it now fails the I've tried to follow through the code and see what is actually happening when this change is made, but I'm out of my depth here. My guess is that Edit: I think that's the problem!
I'll add in something to catch |
{ "total_count": 1, "+1": 1, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Auto chunk 618828102 | |
629197362 | https://github.com/pydata/xarray/pull/4064#issuecomment-629197362 | https://api.github.com/repos/pydata/xarray/issues/4064 | MDEyOklzc3VlQ29tbWVudDYyOTE5NzM2Mg== | AndrewILWilliams 56925856 | 2020-05-15T12:05:22Z | 2020-05-15T12:05:22Z | CONTRIBUTOR | No unpushed commits |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Auto chunk 618828102 | |
629191037 | https://github.com/pydata/xarray/pull/4064#issuecomment-629191037 | https://api.github.com/repos/pydata/xarray/issues/4064 | MDEyOklzc3VlQ29tbWVudDYyOTE5MTAzNw== | AndrewILWilliams 56925856 | 2020-05-15T11:49:23Z | 2020-05-15T11:49:23Z | CONTRIBUTOR | Do you mean the master merge? If that's wrong would you be able to fix it for me? My bad, hopefully i'll be able to do it more cleanly in future |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Auto chunk 618828102 | |
629168282 | https://github.com/pydata/xarray/pull/4064#issuecomment-629168282 | https://api.github.com/repos/pydata/xarray/issues/4064 | MDEyOklzc3VlQ29tbWVudDYyOTE2ODI4Mg== | AndrewILWilliams 56925856 | 2020-05-15T10:49:43Z | 2020-05-15T10:49:43Z | CONTRIBUTOR | Okay, that makes sense. Though, it seems that I forked the master branch before @kmuehlbauer's commit, which fixed this flake8 issue? So I think I need to make a new fork? |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Auto chunk 618828102 | |
629154336 | https://github.com/pydata/xarray/pull/4064#issuecomment-629154336 | https://api.github.com/repos/pydata/xarray/issues/4064 | MDEyOklzc3VlQ29tbWVudDYyOTE1NDMzNg== | AndrewILWilliams 56925856 | 2020-05-15T10:15:50Z | 2020-05-15T10:17:38Z | CONTRIBUTOR | Okay cheers both! I'll have a look at these now. @keewis sorry I'm still getting used to using this side of Git at the moment, could you clarify what you mean by merge |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Auto chunk 618828102 | |
629147818 | https://github.com/pydata/xarray/pull/4064#issuecomment-629147818 | https://api.github.com/repos/pydata/xarray/issues/4064 | MDEyOklzc3VlQ29tbWVudDYyOTE0NzgxOA== | AndrewILWilliams 56925856 | 2020-05-15T10:00:35Z | 2020-05-15T10:01:43Z | CONTRIBUTOR | In my git clone, when I run the
I'm not sure why something has changed in these files (I haven't touched them), I also can't work out what the Could this somehow be associated with loads of the checks failing below? Thanks! :) |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Auto chunk 618828102 | |
628797255 | https://github.com/pydata/xarray/issues/4055#issuecomment-628797255 | https://api.github.com/repos/pydata/xarray/issues/4055 | MDEyOklzc3VlQ29tbWVudDYyODc5NzI1NQ== | AndrewILWilliams 56925856 | 2020-05-14T18:01:45Z | 2020-05-14T18:01:45Z | CONTRIBUTOR | I also thought that, after the dask error message it's pretty easy to then look at the In general though, is that the type of layout you'd suggest for catching and re-raising errors? Using |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Automatic chunking of arrays ? 617476316 | |
628616379 | https://github.com/pydata/xarray/issues/4055#issuecomment-628616379 | https://api.github.com/repos/pydata/xarray/issues/4055 | MDEyOklzc3VlQ29tbWVudDYyODYxNjM3OQ== | AndrewILWilliams 56925856 | 2020-05-14T12:57:21Z | 2020-05-14T17:50:31Z | CONTRIBUTOR | Nice, that's neater! Would this work, in the
|
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Automatic chunking of arrays ? 617476316 | |
628513777 | https://github.com/pydata/xarray/issues/4055#issuecomment-628513777 | https://api.github.com/repos/pydata/xarray/issues/4055 | MDEyOklzc3VlQ29tbWVudDYyODUxMzc3Nw== | AndrewILWilliams 56925856 | 2020-05-14T09:26:24Z | 2020-05-14T09:26:24Z | CONTRIBUTOR | Also, the contributing docs have been super clear so far! Thanks! :) |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Automatic chunking of arrays ? 617476316 | |
628513443 | https://github.com/pydata/xarray/issues/4055#issuecomment-628513443 | https://api.github.com/repos/pydata/xarray/issues/4055 | MDEyOklzc3VlQ29tbWVudDYyODUxMzQ0Mw== | AndrewILWilliams 56925856 | 2020-05-14T09:25:48Z | 2020-05-14T09:25:48Z | CONTRIBUTOR | Cheers! Just had a look, is it as simple as just changing this line to the following, @dcherian ?
This seems to work fine in a lot of cases, except automatic chunking isn't implemented for One option is to automatically use |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Automatic chunking of arrays ? 617476316 | |
628212516 | https://github.com/pydata/xarray/issues/4055#issuecomment-628212516 | https://api.github.com/repos/pydata/xarray/issues/4055 | MDEyOklzc3VlQ29tbWVudDYyODIxMjUxNg== | AndrewILWilliams 56925856 | 2020-05-13T19:56:34Z | 2020-05-13T19:56:34Z | CONTRIBUTOR | Oh ok I didn't know about this, I'll take a look and read the contribution docs tomorrow ! It'll be my first PR so may need a bit of hand-holding when it comes to tests. Willing to try though! |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Automatic chunking of arrays ? 617476316 | |
625345337 | https://github.com/pydata/xarray/issues/3784#issuecomment-625345337 | https://api.github.com/repos/pydata/xarray/issues/3784 | MDEyOklzc3VlQ29tbWVudDYyNTM0NTMzNw== | AndrewILWilliams 56925856 | 2020-05-07T16:02:43Z | 2020-05-07T16:02:43Z | CONTRIBUTOR | Hi @max-sixty, just coming back to this now. It seems @r-beer isn't available...do you know roughly how far away his PR was from completion? I'm getting a little bit lost trying to follow #3550 sorry! Was the main |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Function for regressing/correlating multiple fields? 568378007 | |
589368049 | https://github.com/pydata/xarray/issues/3784#issuecomment-589368049 | https://api.github.com/repos/pydata/xarray/issues/3784 | MDEyOklzc3VlQ29tbWVudDU4OTM2ODA0OQ== | AndrewILWilliams 56925856 | 2020-02-20T22:08:01Z | 2020-02-20T22:08:01Z | CONTRIBUTOR | @max-sixty Just had a peruse through a few of the relevant issues, do we know what the status of [#3550 ] is? It seems like @r-beer was pretty close on this, right? |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Function for regressing/correlating multiple fields? 568378007 | |
589328765 | https://github.com/pydata/xarray/issues/3784#issuecomment-589328765 | https://api.github.com/repos/pydata/xarray/issues/3784 | MDEyOklzc3VlQ29tbWVudDU4OTMyODc2NQ== | AndrewILWilliams 56925856 | 2020-02-20T21:32:26Z | 2020-02-20T21:32:26Z | CONTRIBUTOR | I'll take a look at them! |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Function for regressing/correlating multiple fields? 568378007 |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE [issue_comments] ( [html_url] TEXT, [issue_url] TEXT, [id] INTEGER PRIMARY KEY, [node_id] TEXT, [user] INTEGER REFERENCES [users]([id]), [created_at] TEXT, [updated_at] TEXT, [author_association] TEXT, [body] TEXT, [reactions] TEXT, [performed_via_github_app] TEXT, [issue] INTEGER REFERENCES [issues]([id]) ); CREATE INDEX [idx_issue_comments_issue] ON [issue_comments] ([issue]); CREATE INDEX [idx_issue_comments_user] ON [issue_comments] ([user]);
issue 10