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.
私は次のベクトルを持っています
years <- c(1996,1997,1998,1999,2000, 2001,2002,2003,2004,2005,2006,2007,2008,2009,2010)
forループを使用してベクトル内の各数値のリストを作成したいのですが、リストの名前は数値と同じでなければなりません。助けてくれてありがとう。
yearlist <- setNames(vector(length(years), mode="list"), years)