Since you were able to read it in correctly as Babies, you need to make sure the column name is right. The column from the screenshot is WEIGHT, not WEIGHTS.
mean(Babies$WEIGHT)
Sometimes, I like to use the colnames() function and copy and paste the column name to make sure i didn't accidentally misspell it.
colnames(Babies)
Hope this helps!