You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The documentation about iteration with rolling contains the following:
We can also manually iterate through Rolling objects:
for label, arr_window in r:
# arr_window is a view of x
It would help to explain what sort of thing label is, and how we can use it. It seems to be an object of type Coordinate, but Coordinate does not appear in the API reference.
So I would suggest the two following improvements:
Add an example of using the label and arr_window, maybe plotting the arr_window with the label used to give title.
Tweak the document generator to include docstrings from Coordinate in the API reference section.
Crossreference (hyperlink) from this section of the doc text to the API reference.
The text was updated successfully, but these errors were encountered:
A particular ask is "how do we get names (strings) out of the label?"
When I take the list of keys from the label, I get coordinate names, but when I access the coordinate names, I don't get the coordinate values, as I would expect. How do I get these?
The documentation about iteration with
rolling
contains the following:We can also manually iterate through Rolling objects:
It would help to explain what sort of thing
label
is, and how we can use it. It seems to be an object of typeCoordinate
, butCoordinate
does not appear in the API reference.So I would suggest the two following improvements:
label
andarr_window
, maybe plotting thearr_window
with thelabel
used to give title.Coordinate
in the API reference section.The text was updated successfully, but these errors were encountered: