This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
__author__ = """Peter Davidson FIA""" | |
__email__ = '[email protected]' | |
__version__ = '0.1' | |
__license__ = 'If you find this helpful, please say thank you' | |
import pandas as pd, numpy as np | |
def shear_array(df): | |
# This function just shears an array | |
# E.g. x = np.arange(9).reshape(3,3) | |
# shear_array(x) |