from sklearn.datasets import load_boston
import pandas as pd
boston = load_boston()
boston_df = pd.DataFrame(boston.data)
columns = boston.feature_names
boston_df.columns = columns
boston_df.head()
this is the code to import my database. how can I substitute all the outliers of the columns "DIS" with the mean/median of the column??