lets say ive got this table:
print(thistable)
axis1
axis2 1 2 3
1 7584 9975 8187
2 8478 3624 4979
I want to get the names of each axis. Example: I want the names for element thistable[2]. What do i type to get something like: axis1:1, axis2:2? Normal names() dont work, and row.names() work only for one axis.
I've figured an easy way of doing it is transforming the table to a dataframe and do get the indexes like I normally would