For example: air_passengers.rolling_window(window = 12).mean().plot()
How do I find out that mean() can be applied to a rolling_window()? How do I find out that plot() can be applied to a mean()?
Is there something equivalent to doc for this?
For example: air_passengers.rolling_window(window = 12).mean().plot()
How do I find out that mean() can be applied to a rolling_window()? How do I find out that plot() can be applied to a mean()?
Is there something equivalent to doc for this?
you can use dir(object), which give all associated attributes of a object
print(dir(air_passengers.rolling_window(window = 12)))