5

我需要生成每列具有不同小数位数的数据框或 data.table。

例如:

Scale       Status
1.874521    1

需要以 CSV 格式打印为:

Scale,      Status
1.874521,   1.000

format(DF$status, digits=3)正如我尝试过的那样,这必须是一个数值as.numeric(format(DF$status, digits=3))但是这会将其转换为在导出为 CSV 时具有双引号的字符“。

我的实际数据框有很多列,需要不同的小数位数以及需要双引号的字符,因此我无法应用系统范围的更改。

4

1 回答 1

7

比 do 更好的选择quote=FALSE是实际指定要引用的列,因为quote参数可以是要引用的列索引的向量。例如

d = data.table(a = c("a", "b"), b = c(1.234, 1.345), c = c(1, 2.1))
d[, b := format(b, digits = 2)]
d[, c := format(c, nsmall = 3)]
d
#   a   b     c
#1: a 1.2 1.000
#2: b 1.3 2.100

write.csv(d, 'file.csv', quote = c(1,2), row.names = F)
#file.csv:
#"a","b","c"
#"a","1.2",1.000
#"b","1.3",2.100
于 2013-06-13T19:02:34.803 回答