/ Python And R Data science skills: 02 Introduction to While Loop in R Programming Telugu | While Loops in R

Thursday 19 April 2018

02 Introduction to While Loop in R Programming Telugu | While Loops in R

-----------------------------------
a <- 10
b <-30
c <- a*b
d <- sqrt(c)
sqrt(100)
name1="vlr Training"
name2="venkat"
fi=paste(name1,name2)
z<-10==20
isTRUE(z)
5>6
!(5>6)
# while loop
while(TRUE)
{print("hi")}
# print 1 t0 10 number
nm2<-1
while(nm2<=10)
{
  print(nm2)
  nm2<-nm2+1
}

No comments:

Post a Comment