Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
これらの 2 つのリストがあり、これら 2 つのリストの列要素の数を把握したいとします。
> xl [[1]] [1] 1 2 3 4 5 > yl [[1]] [1] 4 3 5 6 7
したがって、この例では、答えは 3 になります。何か提案はありますか?
使用intersect:
intersect
x1 = list(c(1, 2, 3, 4, 5)) y1 = list(c(4, 3, 5, 6, 7)) length(intersect(x1[[1]], y1[[1]])) # 3