(data, test_size)
| 7 | return preprocessed_data |
| 8 | |
| 9 | def split_data(data, test_size): |
| 10 | # Splitting data into training and testing sets |
| 11 | # ... |
| 12 | return X_train, y_train, X_test, y_test |
nothing calls this directly
no outgoing calls
no test coverage detected