You can get a random subset without replacement using List::Util::shuffle().

use List::Util qw/shuffle/; sub pick { return if @_ != 2; my ($num, $count) = @_; (shuffle 1 .. $num)[0 .. $count-1]; }
To build a sample of picks with repetition allowed:
my ($top, $ct, @samples) = (158, 8); my $size = 50,000; $#samples = $size; $_ = [pick( $top, $ct)] for @samples;
You can keep them unique by storing the samples as keys of a hash,
my %sample; $sample{join ',', pick($top, $ct)} = undef while $size > keys %sample;
If you need a memory-breaking large sample, look to a file or database to hold it. Tie::File would be simple to use for that.

Does order matter in a sample? If not, then sort them to get a canonical order before storage.

After Compline,
Zaxo


In reply to Re: Sampling from Combination Space by Zaxo
in thread Sampling from Combination Space by AdriftOnMemoryBliss

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.