My input looks like below:
Name Sep Oct
Amy 833.33 833.33
Eve 20774.5 0
My Expected Output is:
Name Sep Oct
Amy 833 833
Eve 20775 0
When I apply np.ceil to round 0.5 to nearest integer, my output becomes:
Name Sep Oct
Amy 834 834
Eve 20775 0
How to apply np.ceil
only to values having decimal greater than or equal to 0.5? Or is there any other way to get my desired output.