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.
1:10で1から10までのすべての整数のベクトルが得られることはわかっていますが、1から2までの数値を10分の1(つまり、1.0、1.1、1.2、...、2.0)上げるにはどうすればよいですか?
試すseq
seq
> seq(1, 2, by = 0.1) [1] 1.0 1.1 1.2 1.3 1.4 1.5 1.6 1.7 1.8 1.9 2.0
物事を行うには複数の方法があるという精神で、別のオプションは次のとおりです。
> (10:20)/10 [1] 1.0 1.1 1.2 1.3 1.4 1.5 1.6 1.7 1.8 1.9 2.0