`
ajinn
  • 浏览: 34307 次
文章分类
社区版块
存档分类
最新评论

R-Grade Analysis

 
阅读更多

input <- readLines('stdin')

x <- as.integer(input[1])

 

data <- data.frame(

    "id" = c(1:10),

    "grade" = c(75, 26, 54, 90, 86, 93, 48, 71, 66, 99)

)

 

y = subset(data, data$grade > x )

print (length(y$grade))

 

=============================

Grade Analysis

 

You have a dataframe that includes grades of students.

Your program needs to take a number as input, and output the number of students who have a grade greater than the given input.

For example, for the input 89, the output should be:

[1] 3

as 3 students have grades greater than 89.

Hint: You can use the length() function to find the number of items in a vector.

 

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics