MathGroup Archive 2011

[Date Index] [Thread Index] [Author Index]

Search the Archive

Re: How to combine 2 list

  • To: mathgroup at smc.vnet.net
  • Subject: [mg122511] Re: How to combine 2 list
  • From: Armand Tamzarian <mike.honeychurch at gmail.com>
  • Date: Sun, 30 Oct 2011 04:24:36 -0500 (EST)
  • Delivered-to: l-mathgroup@mail-archive0.wolfram.com
  • References: <j8gnpp$5h6$1@smc.vnet.net>

On Oct 29, 10:24 pm, John <j... at datasharks.biz> wrote:
> 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.

Transpose[{dateList, cumlativeNetProfitLoss}]

Mike



  • Prev by Date: How to generate the final result of variable definitions in
  • Next by Date: Re: How to combine 2 list
  • Previous by thread: Re: How to combine 2 list
  • Next by thread: Re: How to combine 2 list