Computer Science, asked by shraddhakapoor7215, 23 hours ago

R programming Create a vector V and Fill them with the values based on the vector temp (passed as arguments). if temp[i]>100 then fill V[i] with the string "Hot" else fill it with "Normal"output:"Normal" "Hot" "Normal"​

Answers

Answered by varnikatyagi2090
0

Explanation:

Normal that it is continued

Answered by shilpa85475
0

span <- function(a) {

 diff <- max(a) - min(a)

 return(diff)

}

dat <- read.csv(file = "data/inflammation-01.csv", header = FALSE)  

span(dat)

Explanation:

Similar questions