Data.table: インデックス付き列名が結合列名のプレフィックスである場合、インデックス付き結合は予期しない結果をもたらします

作成日 2017年11月06日  ·  3コメント  ·  ソース: Rdatatable/data.table

この問題は、stackoverflowに関する私の

2つのdata.tablesの特定の設定では、結合しても期待した結果が得られません。

library(data.table)

# In the code below the join does not deliver the result I would expect
DT1 <- data.table(colname=c("test1","test2","test2","test3"), colname_with_suffix=c("other","test","includes test within","other"))
DT2 <- data.table(lookup=c("test1","test2","test3"), lookup_result=c(1,2,3))
DT1[colname_with_suffix == "not found", ]  # automatically creates index on colname_with_suffix
DT1[DT2, lookup_result := i.lookup_result, on=c("colname"="lookup")][]
# PLEASE NOTE: same result with slightly different syntax: DT1[DT2, lookup_result := i.lookup_result, on=c(colname="lookup")][]
# colname  colname_with_suffix lookup_result
# 1:   test1                other         NA
# 2:   test2                 test         NA
# 3:   test2 includes test within         NA
# 4:   test3                other          3


# Expected result:
 # colname  colname_with_suffix lookup_result
# 1:   test1                other          1
# 2:   test2                 test          2
# 3:   test2 includes test within          2
# 4:   test3                other          3

次のバリエーションでは、結合は期待どおりに機能します。 上記の予期しない動作は、結合列名のプレフィックスである列名を持ち、両方とも同様のテキスト内容を持つ列にインデックスが存在する場合にのみ発生しているようです。

# For all following alternatives the join delivers the correct result

# (a) Same data tables as above, but no index
DT1 <- data.table(colname=c("test1","test2","test2","test3"), colname_with_suffix=c("other","test","includes test within","other"))
DT2 <- data.table(lookup=c("test1","test2","test3"), lookup_result=c(1,2,3))
DT1[DT2, lookup_result := i.lookup_result, on=c("colname"="lookup")][]

# (b) Index on DT2, but completely different values in indexed column than in join column
DT1 <- data.table(colname=c("test1","test2","test2","test3"), colname_with_suffix=c("other","other","other","other"))
DT2 <- data.table(lookup=c("test1","test2","test3"), lookup_result=c(1,2,3))
DT1[colname_with_suffix == "not found", ]  # automatically creates index on colname_with_suffix
DT1[DT2, lookup_result := i.lookup_result, on=c("colname"="lookup")][]

# (c) Index on DT2, similar values in indexed column, but indexed column name is not a prefix of join column name
DT1 <- data.table(colname=c("test1","test2","test2","test3"), x.colname_with_suffix=c("other","test","includes test within","other"))
DT2 <- data.table(lookup=c("test1","test2","test3"), lookup_result=c(1,2,3))
DT1[x.colname_with_suffix == "not found", ]  # automatically creates index on x.colname_with_suffix
DT1[DT2, lookup_result := i.lookup_result, on=c("colname"="lookup")][]

SessionInfo:

# R version 3.3.2 (2016-10-31)
# Platform: x86_64-w64-mingw32/x64 (64-bit)
# Running under: Windows 7 x64 (build 7601) Service Pack 1
# 
# locale:
#     [1] LC_COLLATE=German_Germany.1252  LC_CTYPE=German_Germany.1252    LC_MONETARY=German_Germany.1252 LC_NUMERIC=C                    LC_TIME=German_Germany.1252    
# 
# attached base packages:
#     [1] stats     graphics  grDevices utils     datasets  methods   base     
# 
# other attached packages:
#     [1] data.table_1.10.0
# 
# loaded via a namespace (and not attached):
#     [1] tools_3.3.2

WindowsおよびUbuntuLinux14.04のdata.table1.10.4およびR.Version3.4.2でも同じ動作が発生することに注意してください。

bug joins

最も参考になるコメント

これは簡単な修正でした(プルリクエストを参照)。 バグを報告していただきありがとうございます。問題が今すぐ解決されることを願っています。

全てのコメント3件

これは修正に値するバグのようです。 私はそれを掘り下げて、私の時間の許す限り修正しようとします。

これは簡単な修正でした(プルリクエストを参照)。 バグを報告していただきありがとうございます。問題が今すぐ解決されることを願っています。

@MarkusBonschコミットをdata.table最新の開発バージョンに適用し、リンクされたSO質問の2つの例でテストしました。

どちらの例も期待どおりに機能します。

クイックフィックスのための多くのTHX。

このページは役に立ちましたか?
0 / 5 - 0 評価

関連する問題

jameslamb picture jameslamb  ·  3コメント

arunsrinivasan picture arunsrinivasan  ·  3コメント

MichaelChirico picture MichaelChirico  ·  3コメント

franknarf1 picture franknarf1  ·  3コメント

mattdowle picture mattdowle  ·  3コメント