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.
test500列の名前のdata.frameがあります。test17列のdata.frameを作成する必要がありますtest(その数は1、2、52、121、123、344、401などです)。どうすれば簡単に作成できますか?(まもなく意味します)
test
test1
短い例。小さなデータ フレームの列 1、3 を取得します。
d <- data.frame(a=c(1,2,3), b=c(4,5,6), c=c(7,8,9),d=c(2,3,4)) d[,c(1,3)] a c 1 1 7 2 2 8 3 3 9