Here is my csv file I'm using.
my.xldataset <- read.csv('http://www.math.smith.edu/sasr/datasets/help.csv')
Here's my attempt at finding the mean of column "mcs1".
mean(my.xldataset$mcs1)
All I'm getting in return is an "NA". Where exactly am I going wrong here? Thank you