私はdata.tableが初めてで、このクラスに問題があります。data1
と の2 つの列を持つテーブル ( ) がCouple
ありRatio
ます。Couple
はKey
data.table の です。テーブルの値を変更しようとしています。
次のコードでは、cple
は の既存の値ですCouple
。実行すると、コメントに示されている結果が得られます。
data1[cple]$Ratio[1]<-0 # I get more than 50 warnings and it doesn't work
data1$Ratio[1]<-0 # It works perfectly (but it's not the same as the above code)
エラーはキーに関係しているようですが、その意味がわかりません。
以下に例を示します。
>data1<-data.table(Couple=c("a","a","b","b"),Ratio=1:4)
>data1
Couple Ratio
1: a 1
2: a 2
3: b 3
4: b 4
>setkey(data1,Couple)
>data1["a"]$Ratio[1]<-2 #doesn't work warning message
WARNING:
#In `[<-.data.table`(`*tmp*`, "a", value = list(Couple = c("a", "a" :
# Coerced 'double' RHS to 'integer' to match the column's type; may have truncated precision. Either change the target column to 'double' first (by creating a new 'double' vector length 4 (nrows of entire table) and assign that; i.e. 'replace' column), or coerce RHS to 'integer' (e.g. 1L, NA_[real|integer]_, as.*, etc) to make your intent clear and for speed. Or, set the column type correctly up front when you create the table and stick to it, please.
>data1$Ratio[1]<-2 #works
>data1
Couple Ratio
1: a 2
2: a 2
3: b 3
4: b 4
したがって、インデックスで要素にアクセスする場合は値を変更できますが、値で値にアクセスする場合は変更できません。これどうやってするの?