标签: r digits
如何计算R中包含前导零的数字对象的位数?
例如,我知道nchar(x)将返回数字,如果x是数字,但是x包含前导零的实例又如何呢?
nchar(x)
x
注意:Count the number of integer digits不能解决前导零的问题。
示例:
x<-7 nchar(7) [1] 1 #that's fine x<-07 nchar(07) [1] 1 #that is NOT fine: I want the value of 2 to appear