如何在逗号后减少数字而不舍入四舍五入 示例:我有x = 2.97656 我希望它是2.9而不是3.0 谢谢
答案 0 :(得分:1)
如果您不想使用library("vegan")
df<- data.frame(div=diversity(ph_mat, index="shannon"),
month=unique(ph_mat$month))
,则可以使用math.round()
:
math.floor()
答案 1 :(得分:-2)
您可以使用round(var,number precision) 看到这个链接请更多信息 https://www.geeksforgeeks.org/precision-handling-python/