issue_comments
3 rows where issue = 1621385466 sorted by updated_at descending
This data as json, CSV (advanced)
Suggested facets: created_at (date), updated_at (date)
issue 1
- don't use `issubdtype` to check for integer dtypes in `polyval` · 3 ✖
| id | html_url | issue_url | node_id | user | created_at | updated_at ▲ | author_association | body | reactions | performed_via_github_app | issue |
|---|---|---|---|---|---|---|---|---|---|---|---|
| 1470154910 | https://github.com/pydata/xarray/pull/7619#issuecomment-1470154910 | https://api.github.com/repos/pydata/xarray/issues/7619 | IC_kwDOAMm_X85XoMie | TomNicholas 35968931 | 2023-03-15T14:54:10Z | 2023-03-15T14:54:10Z | MEMBER | @Ravenin7 do you need some guidance on how to add a test for this? Happy to help if so. It would be great to get this fix merged soon because a number of other people have encountered the same bug! |
{
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} |
don't use `issubdtype` to check for integer dtypes in `polyval` 1621385466 | |
| 1466134208 | https://github.com/pydata/xarray/pull/7619#issuecomment-1466134208 | https://api.github.com/repos/pydata/xarray/issues/7619 | IC_kwDOAMm_X85XY27A | keewis 14808389 | 2023-03-13T13:20:15Z | 2023-03-13T13:20:15Z | MEMBER | this looks good to me, but we'd need some tests to make sure we don't reintroduce this issue. I'd probably extend the |
{
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} |
don't use `issubdtype` to check for integer dtypes in `polyval` 1621385466 | |
| 1466127429 | https://github.com/pydata/xarray/pull/7619#issuecomment-1466127429 | https://api.github.com/repos/pydata/xarray/issues/7619 | IC_kwDOAMm_X85XY1RF | keewis 14808389 | 2023-03-13T13:15:40Z | 2023-03-13T13:15:40Z | MEMBER | this happens with any code that calls In [20]: xr.polyval(coord=x, coeffs=out.assign_coords(degree=out.degree.astype("int64"))) Out[20]: <xarray.Dataset> Dimensions: (x: 10) Dimensions without coordinates: x Data variables: x_matrix_rank (x) int64 2 4 6 8 10 12 14 16 18 20 x_singular_values (x) float64 0.3963 1.754 3.111 ... 9.899 11.26 12.61 polyfit_coefficients (x) float64 3.0 7.0 11.0 15.0 ... 27.0 31.0 35.0 39.0 polyfit_residuals (x) float64 4.522e-28 9.044e-28 ... 4.07e-27 4.522e-27 In [21]: xr.polyval(coord=x, coeffs=out.assign_coords(degree=out.degree.astype("int32")))ValueError Traceback (most recent call last) Cell In[21], line 1 ----> 1 xr.polyval(coord=x, coeffs=out.assign_coords(degree=out.degree.astype("int32"))) File .../xarray/core/computation.py:1972, in polyval(coord, coeffs, degree_dim)
1968 raise ValueError(
1969 f"Dimension ValueError: Dimension |
{
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} |
don't use `issubdtype` to check for integer dtypes in `polyval` 1621385466 |
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]);
user 2