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.
私はやってみたいです
am<-0 an<-0 bm<-0 bn<-0 cm<-0 cn<-0 ..... .....
そして息子はznまで。あまり書かずにそれを行う方法はありますか
You am,an,... を個別の変数として既に定義している場合、それらをベクトルに集約する 1 つの方法は次のとおりです。
vars <- unlist(mget(ls(pattern='^[a-z](m|n)$')))
次に、次のようにベクトルを簡単に初期化できます。
vars <- 0