I have a dictionary where each item is 1D python array and I would like to convert it into a 2D numpy array.
For example, my dictionary is
a = {"tom": np.random.uniform(size = 100), "bill": np.random.uniform(size=100)}
and I would like to store in a 2D numpy array with shape (100,2). Have you any suggestions?