This is something that I have been wondering for ages but have never been able to get an answer on.
I am trying to understand how to make a dataframe in R, where each element of the dataframe is itself a vector or a matrix.
For example, let us say we have a regular vector $\vec{V}$ with elements being real numbers $\Bbb R$.
Then to acess any number we would have:
$\vec{V}[3]$ which would give the third element of said vector.
Now, I would like to know how to do this with say a dataframe D, where each element of the dataframe is itself a vector or matrix.
So say that:
$\vec{D}[3]$ is not a real number, but a vector.
How can this be done in R?