i have a dictionary array like so :
myary= {'1': 1, '2': 2, '3': 3, '4': 4, '5': 5, '6': 6, '7': 7, '8': 8, '9': 9}
i would like to convert it to a 2d array somthing like this
in:: numpy.matrix(myary)
out::
1 2 3
4 5 6
7 8 9
is this even possible to do
to convert a dictionary with keys and value to a 2D array with only values