Count how many different values a list takes in Mathematica

后端 未结 4 1567
梦谈多话
梦谈多话 2021-02-08 02:45

I would like to get the number of different values found in a List.

For example:

The output for the List a={1,2,3,4,5} would be 5 whereas it would b

4条回答
  •  逝去的感伤
    2021-02-08 03:00

    Just for amusement, all the following commands also give the desired result:

    Length@Gather@l
    
    Length@Union@l
    
    Length@Tally@l
    
    Count[BinCounts@l, Except@0]
    
    Count[BinLists@l, Except@{}]
    
    Length@Split@Sort@l
    
    Length@GatherBy[l, # &]
    
    Length@Split@SortBy[l, # &]
    

    And many more, of course.

    Edit

    Here is a little timing experiment (not serious)

    l = RandomInteger[{1, 10^2}, 10^7];
    t2[x_] := {Timing[x], ToString[HoldForm@x]};
    SetAttributes[t2, HoldAll]
    Grid[Reverse /@
      {t2[Length@DeleteDuplicates[l]],
       t2[Length@Tally[l]],
       t2[Length@Gather[l]],
       t2[Count[BinCounts[l], Except@0]],
       t2[Length@Union[l]],
       t2[Length@Split@Sort@l],
       t2[Count[BinLists[l], Except@0]]},
     Frame -> All]
    

    enter image description here

    BTW: Note the difference between BinLists[ ] and BinCounts[ ]

    Edit

    A more detailed view of DeleteDuplicates vs Tally

    t = Timing;
    ListLinePlot@Transpose@
      Table[l = RandomInteger[{1, 10^i}, 10^7];
       {Log@First@t@Length@DeleteDuplicates@l,
        Log@First@t@Length@Tally@l},
       {i, Range[7]}]
    

    Beware! Log Plot!

    enter image description here

提交回复
热议问题