Tagged Questions
15
votes
4answers
7k 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 selection, and some for ...
6
votes
3answers
3k 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,000.
The "obvious" ...
5
votes
6answers
877 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 as two arrays, array ...
3
votes
3answers
98 views
Efficient algorithm for random sampling from a distribution while allowing updates?
This is the question I was asked some time ago on interview, I could not find answer for.
Given some samples S1, S2, ... Sn and their probability distributions(or weights, whatever it is called) P1, ...
2
votes
6answers
116 views
How can I write a method that returns an unique string of 6 characters length?
If I do it like this I get some duplicates...
private const string _chars = "ABCDEFGHIJKLMNOPQRSTUVWXYZ123654987";
public string RandomString(int size)
{
var random = new ...
2
votes
4answers
60 views
Efficient random sampling from a huge list
I have a data file with a large number of values (53,000,000+) and I would like to pull out a random subset of n of these values (say, 2,000,000). I implemented a Perl script that pulls the list into ...
2
votes
2answers
66 views
JavaScript randomly selecting/returning a number from a range? [closed]
Possible Duplicate:
Javascript/html: How to generate random number between number A and number B?
Herren und Mensch!
Ich habbe eine question for you regardings the: Randomly returning a ...
2
votes
5answers
190 views
Shell script random number generating
var=$RANDOM creates random numbers but how can i specify a range like between 0 and 12 for instance?
1
vote
5answers
157 views
A method to pick a specific random name
I'm working on an windows app. This app contains a dynamic list of names, that are displayed in the form (user can add or delete a certain name).
What I want to do is for each name in db have another ...
1
vote
1answer
337 views
How to Use SQlite Random()
I'm aware that to select a random row in SQlite I need the command "SELECT * FROM table ORDER BY RANDOM() LIMIT X", but how do I use this within xcode to set and display the given value?
I'm ...
1
vote
2answers
343 views
Generating samples from the logistic distribution
I am working on some statistical code and exploring different ways of creating samples from random distributions - starting from a random number generator that generates uniform floating point values ...
1
vote
5answers
256 views
Returning items randomly from a collection
I've a method which returns a generic list collection(List) from the database. This collection has got order details i.e., Order Id, order name, product details etc.
Also, method the method returns a ...
0
votes
1answer
276 views
Java image viewer
I am trying to create an image viewer the the idea is that the viewer will pop up with one image a random button and a reset button to let the user to click the button and cycle through a list of ...
0
votes
3answers
94 views
How to Shuffle & Echo 5 Random Elements from a String?
a question about getting three random words out of a big string of say 200 words:
$trans = __("water paradise, chicken wing, banana beach, tree trunk")?>
// $trans becomes "water paradijs, ...
0
votes
3answers
314 views
How to Shuffle and Echo 3 Random Words out of a String?
a question about getting some random words out of a bigger string after it has been translated:
<?=__("water, chicken, banana, rice, bread, salt, cucumber, ananas, peach")?>
on my site ...
0
votes
1answer
218 views
Is there a random sampling function for iphone development that can simulate a coin toss?
Is there a random sampling function for the iphone?
For example, if you want to flip a coin that returns heads 25% of the times it's flipped, and you want to flip it and see if you get heads this ...