Home > other >  Move the window function python pandas rolling elements within a direct access to the window?
Move the window function python pandas rolling elements within a direct access to the window?

Time:11-24

Internet various tutorials, at least is an average can output, like this

Raw_mean=raw. Rolling (window=5000). The mean ()

If such written

Raw_mean=raw. Rolling (window=5000)
Print (raw_mean)

This is the output

Rolling window=5000, center=False, axis=0]

Whether the window directly to the element extracted, then my other operations?
  • Related