MCPcopy Create free account
hub / github.com/debjitpaul/refiner / get_glucose_general_data

Function get_glucose_general_data

data_preprocessing/utils.py:142–146  ·  view source on GitHub ↗
(glucose_data)

Source from the content-addressed store, hash-verified

140
141
142def get_glucose_general_data(glucose_data):
143 glucose_gen_data = pd.DataFrame()
144 glucose_gen_data["input"] = glucose_data.iloc[:, 0]
145 glucose_gen_data["target"] = glucose_data.iloc[:, 1].apply(lambda x: x.split("**")[1].strip())
146 return glucose_gen_data
147
148def get_glucose_specific_data(glucose_data):
149 glucose_spec_data = pd.DataFrame()

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected