To see the z-scores in the context of the data frame, the code below will show a few rows of the data frame to compare: the actual thumb length values, the mean of Thumb, the standard deviation of Thumb, and the z-score (how many standard deviations the value is above or below the mean).
# Save the mean of Thumb into the data frame
Fingers$Thumb_mean <- mean(Fingers$Thumb)
# Save the standard deviation of Thumb into the data frame
Fingers$Thumb_sd <- sd(Fingers$Thumb)
# Save the z-scores of Thumb into the data frame
Fingers$Thumb_zscore <- zscore(Fingers$Thumb)
# Select the relevant variables and the first 6 rows of the data
head(select(Fingers, Thumb, Thumb_mean, Thumb_sd, Thumb_zscore))