I'm a R noob and am sorry to have to ask this question. I have a dataset loaded into R. There's a column named "Score".
I've made a variable named score.
score = as.integer(mydata$score)
There are values between 1 and 100 in that column. When I ask R
range(score)
I get 1 50. Similarly, when I use:
max(score)
I get 50... What have I done wrong?