Back
In R programming, you can take the help of seq() for getting the desired output. In seq() you can have the length.out argument specifying the desired length of the sequence.
seq(40.56, 100, length.out = 25)#[1] 40.6 43.0 45.5 48.0 50.5 52.9 55.4 57.9 60.4#[10] 62.9 65.3 67.8 70.3 72.8 75.2 77.7 80.2 82.7#[19] 85.1 87.6 90.1 92.6 95.0 97.5 100.0
seq(40.56, 100, length.out = 25)
#[1] 40.6 43.0 45.5 48.0 50.5 52.9 55.4 57.9 60.4
#[10] 62.9 65.3 67.8 70.3 72.8 75.2 77.7 80.2 82.7
#[19] 85.1 87.6 90.1 92.6 95.0 97.5 100.0
31k questions
32.8k answers
501 comments
693 users