(glucose_data)
| 140 | |
| 141 | |
| 142 | def 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 | |
| 148 | def get_glucose_specific_data(glucose_data): |
| 149 | glucose_spec_data = pd.DataFrame() |
nothing calls this directly
no outgoing calls
no test coverage detected