Ask Your Question
0

export data and labels in cvs file

asked 2014-07-14 01:08:16 +0200

mresimulator gravatar image

updated 2014-07-15 01:35:18 +0200

Hi experts!

I have the Numpy arrays AAA=[a1,a2,...] and BBB=[b1,b2,...]. I know that I can export these arrays doing:

np.savetxt('array AAA.csv', AAA, delimiter=',') 
np.savetxt('array BBB.csv', BBB, delimiter=',')

I wanna export one csv file that include both arrays + labels, in this way:

AAA | BBB
----------
a1  | b1
a2  | b2
.   |  . 
.   |  . 
.   |  .

How can I do that?

Waiting for your answers.

Thanks a lot.

Best regards

edit retag flag offensive close merge delete

Comments

Do you mean a csv file? In that case, perhaps taking a look at the `csv` module documentation might be helpful. The [third](https://docs.python.org/2/library/csv.html#examples) example there that might be useful for your purposes. It might help to send as input to the `writerows` method the `zip` of `AAA` and `BBB` from your example.

fidbc gravatar imagefidbc ( 2014-07-14 02:30:41 +0200 )edit

Thanks a lot fidbc!!

mresimulator gravatar imagemresimulator ( 2014-07-15 01:54:24 +0200 )edit

1 Answer

Sort by ยป oldest newest most voted
1

answered 2014-07-15 00:03:33 +0200

tmonteil gravatar image

You can do:

sage: C = zip(A, B)
sage: with open('file_path.csv', 'w') as f:
....:     c = csv.writer(f)
....:     c.writerows(C)
edit flag offensive delete link more

Comments

Thanks tmonteil !!

mresimulator gravatar imagemresimulator ( 2014-07-15 01:54:48 +0200 )edit

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

1 follower

Stats

Asked: 2014-07-14 01:08:16 +0200

Seen: 897 times

Last updated: Jul 15 '14