exponentially_weighted_mean
| Name | Type | Description | Default |
|---|---|---|---|
x | ndarray | Input array. | required |
alpha | float | Weight parameter. | required |
skipna | bool | If True, exclude NaN values from calculations using forward-fill behavior. When False (default), any NaN value causes the result to be NaN, maintaining backwards compatibility. When True, the last valid value is forward-filled through NaN values (matching pandas default behavior). | False |
| Type | Description |
|---|---|
ndarray | np.ndarray: Array with the exponentially weighted mean. |

