Skip to content

Instantly share code, notes, and snippets.

@dvgodoy
Last active November 24, 2022 17:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dvgodoy/48f9ff2378adec83b1ed9b874861d9f2 to your computer and use it in GitHub Desktop.
Save dvgodoy/48f9ff2378adec83b1ed9b874861d9f2 to your computer and use it in GitHub Desktop.
#!pip install ruptures
import ruptures as rpt
from ruptures.exceptions import BadSegmentationParameters
def change_points(data, model='l1', pen=3):
signal = data.copy()
# If there are no valid data points, returns one regime
# that starts at 0, ends at the full length, and is nan
if np.all(np.isnan(signal)):
return np.array([0, len(signal)]), np.array([np.nan])
# Gets the index of the first non-missing data
ini = np.argmax(~np.isnan(signal))
# Uses the Pelt method of the ruptures package
# to find regime changes/breaks
algo = rpt.Pelt(model=model).fit(signal[ini:])
try:
breaks = algo.predict(pen=pen)
except BadSegmentationParameters:
# If no changes/breaks were found, assumes
# the regime goes up to the end of the series
breaks = [len(signal)-ini]
# Gets the indices of the breaks and
breaks = np.array([0, *breaks]) + ini
# Computes the average of each regime
averages = np.array([signal[breaks[i-1]:breaks[i]].mean()
for i in range(1, len(breaks))])
# First regime must be at least 10 years long
i = np.argmax(np.diff(breaks) >= 10)
return breaks[i:], averages[i:]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment