Follow

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use
Contact

How to transform a 2d array in to two different 1d array in python

I’m trying to transform one 2d array:

{4: 6, 6: 2, 1: 2, 3: 7, 5: 4, 9: 1, 2: 3, 7: 2, 8: 1}

in to 2 different 1d arrays, like this:

arr1 = [1, 2, 3, 4, 5, 6, 7, 8, 9] 
arr2 = [2, 3, 7, 6, 4, 2, 2, 1, 1]

To plot, using matplotlib, arr1 as y and arr2 as x.

MEDevel.com: Open-source for Healthcare and Education

Collecting and validating open-source software for healthcare, education, enterprise, development, medical imaging, medical records, and digital pathology.

Visit Medevel

How can I do this?

PS: Sorry for the bad English. (;

>Solution :

You can use dict.items and zip:

d = {4: 6, 6: 2, 1: 2, 3: 7, 5: 4, 9: 1, 2: 3, 7: 2, 8: 1}

arr1, arr2 = map(list, zip(*d.items()))

output:

arr1
# [1, 2, 3, 4, 5, 6, 7, 8, 9] 

arr2
# [2, 3, 7, 6, 4, 2, 2, 1, 1]

A convenience, if you want to plot, might be to use pandas.Series:

import pandas as pd

pd.Series(d).sort_index().plot()

# or
# import matplotlib .pyplot as plt
# plt.plot(pd.Series(d).sort_index())

output:

enter image description here

Add a comment

Leave a Reply

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use

Discover more from Dev solutions

Subscribe now to keep reading and get access to the full archive.

Continue reading