Subsetting a column of a dataframe
What is the correct code to print the 21st and the 30th weight?
BEPAS$weight [21:30]
BEPAS[weight 21+30]
BEPAS$weight [c(21,30)]
(Just type the number)