Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
661 views
in Technique[技术] by (71.8m points)

sequence - Grading Software Keeps Flagging Answer - Integers Between Min and Max of Data in R

Good day, the following is the problem I am trying to answer.

"Which integer values are between the maximum and minimum heights? For example, if the minimum height is 10.2 and the maximum height is 20.8, your answer should be x <- 11:20 to capture the integers in between those values. (If either the maximum or minimum height are integers, include those values too.)

Write code to create a vector x that includes the integers between the minimum and maximum heights (as numbers). There are multiple ways to solve this problem, but the grader expects you to use the format in the problem description. Your answer should have numbers and a colon (:), and it should not use other functions."

My Answer: Given that the min and max of the data are 50 and 82.7 respectively, the answer should be 50:82 (I have also tried 50:83).

Help: Both answers are being flagged as incorrect. Am I doing something wrong here?

Further Info: This is an assignment from an EdX Course. I am using the "heights" data set from the "dslabs" library.

question from:https://stackoverflow.com/questions/65545754/grading-software-keeps-flagging-answer-integers-between-min-and-max-of-data-in

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...