Wednesday, 21 August 2013

database for sum/difference manipulation

database for sum/difference manipulation

I'm learning Python 3 and I want to use a database that
allows me to manipulate ( sum row, sum column, sum single element,
difference single
element. Example 47 + 56, 47 + 86, 47 - 86 and all other mathematical and
statistical
calculations. The database is formatted like this:
Date Id I II III IV V
17-jan-13 aa 47 56 7 74 58
18-jan-13 ab 86 2 30 40 75
19-jan-13 ac 72 64 41 81 80
20-jan-13 ad 51 26 43 61 32
21-jan-13 ae 31 62 32 25 75
22-jan-13 af 60 83 18 35 5
23-jan-13 ag 29 8 47 12 69
Which platform to choose? Module cvs for the database and pandas module or
sqlite 3? Or Mysql?

No comments:

Post a Comment