In the below tutorial I have explained how you shall generate Even or Odd numbers using R. You can generate using any one of the following methods.
Method 1:
Generating even numbers between 1 to 100
even <- seq(0,100,2)
Method 2:
Generating 100 odd numbers starting from 1
odd <- seq(1,by=2, len=100)
Subscribe to SAR Publisher and Support my YouTube channel for more videos on R and data analysis.