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つのベクトルを持っています:
vars <- c("SR", "PL") vis <- c(1,2,3)
これらのベクトルに基づいて、次のベクトルを作成したいと思います。
"SR.1" "SR.2" "SR.3" "PL.1" "PL.2" "PL.3"
paste私は次の結果を持っています:
paste
paste(vars, vis, sep=".") [1] "SR.1" "PL.2" "SR.3"
必要なベクターを作成するにはどうすればよいですか?