How to combine 2 list
- To: mathgroup at smc.vnet.net
- Subject: [mg122474] How to combine 2 list
- From: John <john at datasharks.biz>
- Date: Sat, 29 Oct 2011 07:13:12 -0400 (EDT)
- Delivered-to: l-mathgroup@mail-archive0.wolfram.com
I have tried to find the answer on this, I am sure it has been asked before. Can anyone help? I have 2 list: cumlativeNetProfitLoss = Drop[FoldList[Plus, 0, listNetProfitLoss], 1] {1.11, 2.07, 2.75, 3.49, 3.79, 10.2, 11.03, 19.84, 22.07, 23.29} and dateList = Reverse[dateNetProfitLoss[[All, 1]]] {{2011, 8, 31}, {2011, 9, 2}, {2011, 9, 6}, {2011, 9, 20}, {2011, 9, 21}, {2011, 9, 22}, {2011, 9, 28}, {2011, 9, 30}, {2011, 10, 4}, {2011, 10, 10}} How to I get: {{{2011, 8, 31}, 1.11}, {{2011, 9, 2}, 2.07}, {{2011, 9, 6}, 2.75}, {{2011, 9, 20}, 3.49}, {{2011, 9, 21}, 3.79}, {{2011, 9, 22}, 10.2}, {{2011, 9, 28}, 11.03}, {{2011, 9, 30}, 19.84}, {{2011, 10, 4}, 22.07}, {{2011, 10, 10}, 23.29}} Thanks in advance.
- Follow-Ups:
- Re: How to combine 2 list
- From: DrMajorBob <btreat1@austin.rr.com>
- Re: How to combine 2 list
- From: Ulrich Arndt <ulrich.arndt@data2knowledge.de>
- Re: How to combine 2 list
- From: Pete Boardman <pete.boardman@mac.com>
- Re: How to combine 2 list
- From: "Harvey P. Dale" <hpd1@nyu.edu>
- Re: How to combine 2 list