Beefy Boxes and Bandwidth Generously Provided by pair Networks
We don't bite newbies here... much
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
Does j change for each set, or do you want to print the same number of lines for each set? It sounds like the amount of lines for each set is the same. Assuming that you want to print the same amount of lines for each set, than do the following

-read an entire set, let $m = the number of lines read
-let $j = int(rand($m))+1
-print out $j lines of the first set that you've already read
-now read the file line by line, buffering the input, and after you've read out $m lines, print out the first $j lines for each set, and throw away the remaining ($m-$j) lines. j random lines from each set. Then you can throw away your buffer and start over.

As for the size of the file, just don't slurp the entire file into memory, read it line by line.

Have I answered your question? I have a feeling that I'm oversimplifying it. If so, please give a few more details.

Updated

In reply to Re: grabbing random n rows from a file by swkronenfeld
in thread grabbing random n rows from a file by punkish

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



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others studying the Monastery: (4)
As of 2024-04-23 23:47 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found