Skip to content

Instantly share code, notes, and snippets.

@ronenabr
ronenabr / ActiveLegend.py
Created December 9, 2013 14:34
Enable picking on the legend to toggle the legended line on and off. based on http://matplotlib.org/examples/event_handling/legend_picking.html
class ActiveLegend:
"""Enable picking on the legend to toggle the
legended line on and off.
based on
http://matplotlib.org/examples/event_handling/legend_picking.html
"""
def __init__(self,ax):
@ronenabr
ronenabr / SegmentedLeastSq.py
Created November 15, 2013 11:27
This program uses Segmented Least Squares algorithm in order to fit composite series of point into several curves.
# -*- coding: utf-8 -*-
"""
Created on Thu Sep 20 16:30:55 2012
This program uses Segmented Least Squares algorithm in order to
fit composite series of point into several curves.
See usage example below.