Pandas fungsi cieling

import pandas as pd
import numpy as np

df['column'] = df['column'].apply(np.ceil)
amahi2001