May I know if there exist build-in Pandas module to rounds a given number up to the nearest specified multiple.
In excel this can be achieved using Ceiling function
.
Say given a df of -0.4, 0.5,1.5
, then round this to a multiple of 1 will result in 0,1,and 2
.
While I have comb the net about this topic, but I dont see any reference about it. Please let me know if this is a duplicate.
Other might suggest something like here but its not a built in Pandas