html_url,issue_url,id,node_id,user,created_at,updated_at,author_association,body,reactions,performed_via_github_app,issue
https://github.com/pydata/xarray/pull/7628#issuecomment-1490323477,https://api.github.com/repos/pydata/xarray/issues/7628,1490323477,IC_kwDOAMm_X85Y1IgV,61923007,2023-03-30T13:39:12Z,2023-03-30T13:39:12Z,NONE,"@keewis @TomNicholas @headtr1ck any comments?
","{""total_count"": 0, ""+1"": 0, ""-1"": 0, ""laugh"": 0, ""hooray"": 0, ""confused"": 0, ""heart"": 0, ""rocket"": 0, ""eyes"": 0}",,1624520287
https://github.com/pydata/xarray/pull/7628#issuecomment-1476754932,https://api.github.com/repos/pydata/xarray/issues/7628,1476754932,IC_kwDOAMm_X85YBX30,61923007,2023-03-20T18:44:13Z,2023-03-20T18:44:13Z,NONE,@keewis it seems `.str.format` does what we want the issue is requesting. Is there any need for the issue or can you clarify exactly what needs to be improved?,"{""total_count"": 0, ""+1"": 0, ""-1"": 0, ""laugh"": 0, ""hooray"": 0, ""confused"": 0, ""heart"": 0, ""rocket"": 0, ""eyes"": 0}",,1624520287
https://github.com/pydata/xarray/pull/7628#issuecomment-1474755366,https://api.github.com/repos/pydata/xarray/issues/7628,1474755366,IC_kwDOAMm_X85X5vsm,61923007,2023-03-18T07:10:34Z,2023-03-18T07:10:34Z,NONE,@headtr1ck @keewis can you check it now? I’ve modified it a bit,"{""total_count"": 0, ""+1"": 0, ""-1"": 0, ""laugh"": 0, ""hooray"": 0, ""confused"": 0, ""heart"": 0, ""rocket"": 0, ""eyes"": 0}",,1624520287
https://github.com/pydata/xarray/pull/7628#issuecomment-1471413892,https://api.github.com/repos/pydata/xarray/issues/7628,1471413892,IC_kwDOAMm_X85Xs_6E,43316012,2023-03-16T06:53:52Z,2023-03-16T06:53:52Z,COLLABORATOR,"Again, I think that this implementation is too specific and the issue wanted a more general string formatting option.
Also, auch a method is better kept as part of the StrAccessor.","{""total_count"": 0, ""+1"": 0, ""-1"": 0, ""laugh"": 0, ""hooray"": 0, ""confused"": 0, ""heart"": 0, ""rocket"": 0, ""eyes"": 0}",,1624520287
https://github.com/pydata/xarray/pull/7628#issuecomment-1471402226,https://api.github.com/repos/pydata/xarray/issues/7628,1471402226,IC_kwDOAMm_X85Xs9Dy,61923007,2023-03-16T06:40:26Z,2023-03-16T06:40:26Z,NONE,"@TomNicholas & @headtr1ck , Can you review this so I can know what to change? I think it's failing just one test","{""total_count"": 0, ""+1"": 0, ""-1"": 0, ""laugh"": 0, ""hooray"": 0, ""confused"": 0, ""heart"": 0, ""rocket"": 0, ""eyes"": 0}",,1624520287
https://github.com/pydata/xarray/pull/7628#issuecomment-1469866148,https://api.github.com/repos/pydata/xarray/issues/7628,1469866148,IC_kwDOAMm_X85XnGCk,61923007,2023-03-15T11:52:48Z,2023-03-15T11:52:48Z,NONE,@k,"{""total_count"": 0, ""+1"": 0, ""-1"": 0, ""laugh"": 0, ""hooray"": 0, ""confused"": 0, ""heart"": 0, ""rocket"": 0, ""eyes"": 0}",,1624520287
https://github.com/pydata/xarray/pull/7628#issuecomment-1469756497,https://api.github.com/repos/pydata/xarray/issues/7628,1469756497,IC_kwDOAMm_X85XmrRR,61923007,2023-03-15T10:35:06Z,2023-03-15T10:35:06Z,NONE,"I think the initial issue was to create a method that allows any specific significant figure to be used and then formatted as strings after. I think I'm having issues with a floating dtype. Check the image below

","{""total_count"": 0, ""+1"": 0, ""-1"": 0, ""laugh"": 0, ""hooray"": 0, ""confused"": 0, ""heart"": 0, ""rocket"": 0, ""eyes"": 0}",,1624520287
https://github.com/pydata/xarray/pull/7628#issuecomment-1469697108,https://api.github.com/repos/pydata/xarray/issues/7628,1469697108,IC_kwDOAMm_X85XmcxU,43316012,2023-03-15T09:57:12Z,2023-03-15T09:57:12Z,COLLABORATOR,"By the way, this works (but probably slow?):
```python
def tostr(x):
return f""{:.2f}""
tostr_v = np.vectorize(tostr)
da = xr.DataArray([1, 2, 3.456], dims=""x"")
tostr_v(da)
```","{""total_count"": 0, ""+1"": 0, ""-1"": 0, ""laugh"": 0, ""hooray"": 0, ""confused"": 0, ""heart"": 0, ""rocket"": 0, ""eyes"": 0}",,1624520287
https://github.com/pydata/xarray/pull/7628#issuecomment-1469677146,https://api.github.com/repos/pydata/xarray/issues/7628,1469677146,IC_kwDOAMm_X85XmX5a,43316012,2023-03-15T09:43:57Z,2023-03-15T09:44:33Z,COLLABORATOR,"Wouldn't it be more useful to have something like `da.str.format(""sometext: {:2.2f}"")`
Or maybe `da.as_str(...)`","{""total_count"": 0, ""+1"": 0, ""-1"": 0, ""laugh"": 0, ""hooray"": 0, ""confused"": 0, ""heart"": 0, ""rocket"": 0, ""eyes"": 0}",,1624520287
https://github.com/pydata/xarray/pull/7628#issuecomment-1469066498,https://api.github.com/repos/pydata/xarray/issues/7628,1469066498,IC_kwDOAMm_X85XkC0C,61923007,2023-03-15T00:48:53Z,2023-03-15T00:48:53Z,NONE,@TomNicholas Can you review this for me?,"{""total_count"": 0, ""+1"": 0, ""-1"": 0, ""laugh"": 0, ""hooray"": 0, ""confused"": 0, ""heart"": 0, ""rocket"": 0, ""eyes"": 0}",,1624520287