3
votes
6answers
250 views
Generating correlated numbers
Here is a fun one: I need to generate random x/y pairs that are correlated at a given value of Pearson product moment correlation coefficient, or Pearson r. You can imagine this …
1
vote
1answer
56 views
random.sample return only characters instead of strings
Hi SO,
This is a kind of newbie question, but I couldn't find a solution. I read a list of strings from a file, and try to get a random, 5 element sample with random.sample, but t …
2
votes
2answers
87 views
Randomizing pages in Wikipedia with MySQL and Perl?
I found a perl script that manages randomizing the wikipedia articles in Wikipedia here. The code seems to be slightly computer generated. Due to my present interest in MySQL, I th …
5
votes
6answers
635 views
Randomly Pick Lines From a File Without Slurping It With Unix
Hi all,
I have a 10^7 lines file, in which I want to choose 1/100 of lines randomly
from the file. This is the AWK code I have, but it slurps all the file content
before hand. My …
0
votes
7answers
280 views
command to get exactly n random lines from a file
Following up on this question, I need to get exactly n lines at random out of a file (or stdin). This would be similar to head or tail, except I want some from the middle.
Now, o …
1
vote
4answers
262 views
Sample Data Creation Tool (mainly for Databases)
I’m thinking through some database design concepts and believe that creating sample data simulating real-world volume of my application will help solidify some design decisions.
…
2
votes
8answers
738 views
Rosetta Stone: reservoir random sampling algorithm
I've been killing some time with a little puzzle project -- writing the algorithm described in Knuth for random sampling of a population without knowing the size of the population …
1
vote
3answers
1k views
Weighted random selection with and without replacement
Recently I needed to do weighted random selection of elements from a list, both with and without replacement. While there are well known and good algorithms for unweighted selectio …
3
votes
3answers
927 views
Simple Random Samples from a (My)Sql database
How do I take an efficient simple random sample in SQL? The database in question is running MySQL; my table is at least 200,000 rows, and I want a simple random sample of about 10, …
