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.
おそらく非常に基本的な質問ですが、自分ではこれを理解できないようです。
次のような data.frame があります。
df <- data.frame(X1=1:4,X2=5:8,X3=9:12)
すべての列から 1 つの長いベクトルを作成したいと思います。たとえば、次のようになります。
[1] 1 2 3 4 5 6 7 8 9 10 11 12
どうすればいいですか?
ありがとう!