Skip to content

Instantly share code, notes, and snippets.

View blackfry's full-sized avatar
🤷‍♂️

Mark Dickie blackfry

🤷‍♂️
  • Cayman Pty Ltd
  • Sydney Australia
View GitHub Profile
@blackfry
blackfry / frac-diff_sk
Created July 30, 2021 11:29 — forked from skuttruf/frac-diff_sk
Python code for fractional differencing of pandas time series
"""
Python code for fractional differencing of pandas time series
illustrating the concepts of the article "Preserving Memory in Stationary Time Series"
by Simon Kuttruf
While this code is dedicated to the public domain for use without permission, the author disclaims any liability in connection with the use of this code.
"""
import numpy as np
import pandas as pd
@blackfry
blackfry / bulletproof-git-workflow.md
Created May 23, 2017 01:48 — forked from db/bulletproof-git-workflow.md
bulletproof git workflow

Bulletproof Git Workflow

start working

git checkout master
git pull
git checkout -b feature/my-work
# edit your files