Is it possible to provide datatable rows with names in string form as one does with columns? I want to be able to refer to a row via a name rather than an index.
EDIT: My bad. I am working in C#. I should have stated that.
I am doing market correlation studies using statistical analysis. I want to store the outputs of correlation studies in a dataTable. Each column is a market that is included in the studies. The rows would have the same names as the columns in the same order. So I would place the output of a correlation study between the Gold market and the Copper market at the intersection of the Column "Gold" and the Row "Copper" (as well as at the intersection of the Column "Copper" and Row "Gold").
In order to easily refer to the outputs of these studies elsewhere in my code, I want to be able to refer to the rows by market name rather than by index.
Thanks!