Suppose I have a vector that is nested in a dataframe one or two levels. Is there a quick and dirty way to access the last value, without using the length() fu
length()
Another way is to take the first element of the reversed vector:
rev(dat$vect1$vec2)[1]