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()
Whats about
> a <- c(1:100,555) > a[NROW(a)] [1] 555