While it is quite easy to define a two-dimensional data structure (data frame) in Python or R, is there any alternative concept to define such a structure in VBA Excel?
update:
The reason I asked such a question is that I wanted to load data from multiple CSV files (without importing those CSV files) into VBA code like two-dimensional arrays to do some manipulation and processing. Hence it is easy to import data from CSV files into an Excel sheet, I am thinking this method is not very efficient for my case. Since I am more familiar with R, I asked this question from an R programmer's perspective. I hope you get the idea.