9
data.table
初心者の質問。 data.table
の列のセットを数式を適用して変換したいと考えています。列のセットは、列の合計数の1つ以上を除外する必要があります。私はどうなるdata.frame
面でdata.tableの列のセットを変換する
:
data(iris)
head(iris)
Sepal.Length Sepal.Width Petal.Length Petal.Width Species
1 5.1 3.5 1.4 0.2 setosa
2 4.9 3.0 1.4 0.2 setosa
3 4.7 3.2 1.3 0.2 setosa
4 4.6 3.1 1.5 0.2 setosa
5 5.0 3.6 1.4 0.2 setosa
6 5.4 3.9 1.7 0.4 setosa
iris[, -5] <- iris[, -5] * 1e3
head(iris)
Sepal.Length Sepal.Width Petal.Length Petal.Width Species
1 5100 3500 1400 200 setosa
2 4900 3000 1400 200 setosa
3 4700 3200 1300 200 setosa
4 4600 3100 1500 200 setosa
5 5000 3600 1400 200 setosa
6 5400 3900 1700 400 setosa
私はdata.table
でmultiple columnsを選択する方法を知っている:
iris.dt <- data.table(iris)
head(iris.dt[, -5, with = FALSE])
かさえ:
head(iris.dt[, !"Species", with = FALSE])
、実際にそれらを変換する方法を利用して選択した列参照渡しですか?