I have a list that looks something like this:
x=list(a=a,b=b,b1=b1,b2=b2,b3=b3,...,bn=bn,c=c)
I want to retrieve all the bn's by calling x$bn but the problem I have over here is that I don't know what is n (n varies across the different variables). Can someone give me a hint or two on how I should approach this problem?