标签: r
我想在数字向量中仅保留每个数字的前2位小数。例如,我如何在R?
> x <- c(95.45000, 97.53333) > keep_the_first_two_decimal_places_only(x) > [1] 95.45 97.53
请注意,我不想仅print小数位数,我想实际删除多余的数字。
print