Here are some examples:
original data
497.2594497509648
497.3865
495.31
495.29
expected result:
497.2
497.4
495.4
495.2
And I have another case where I want to round my list of numbers to the closest of four options: integer, ending with .25 or ending with .5 or ending with .75.
my examples:
original data
497.2594497509648
497.8865
495.77
495.45
expected result:
497.25
498
495.75
495.5
thank you.