kenken999's picture
test
63f6011
raw
history blame
213 Bytes
import pandas as pd
from sklearn.preprocessing import StandardScaler
def process_data(data):
# Preprocess data
scaler = StandardScaler()
scaled_data = scaler.fit_transform(data)
return scaled_data