Skip to content

Instantly share code, notes, and snippets.

View rickecon's full-sized avatar

Richard Evans rickecon

View GitHub Profile
@rickecon
rickecon / robust_2dsplines_sklearn.py
Created December 26, 2020 07:30 — forked from MMesch/robust_2dsplines_sklearn.py
Robust Spline Regression with scikit learn
#!/usr/bin/env python
"""
2D BSpline Regression with Scikitlearn.
"""
import matplotlib.pyplot as plt
import numpy as np
import scipy.interpolate as si
import itertools