Files
drift/feature_extractors/utils.py
T

7 lines
198 B
Python
Raw Normal View History

import pandas as pd
def get_close_low_high(df: pd.DataFrame) -> tuple[pd.Series, pd.Series, pd.Series]:
close = df['close']
low = df['low']
high = df['high']
return close, low, high