Comment appliquer le logarithme dans Pandas DataFrame

import numpy as np

data['natural_log'] = data['YOUR_COLUMN'].apply(np.log)
Shanti