active questions tagged statistics - Stack Overflowmost recent 30 from stackoverflow.com2009-12-07T21:54:04Zhttp://stackoverflow.com/feeds/tag/statisticshttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1857747/r-user-defined-function0R + user defined functionzing2009-12-07T04:06:06Z2009-12-07T04:14:03Z
<p>I have a situation in which I have to give a formula as input to the <code>nls()</code> function.
I have data which is between time and variance. For example:</p>
<p>Time Variance</p>
<p>1 0.15</p>
<p>2 0.23</p>
<p>3 0.67</p>
<p>4 0.85</p>
<p>Now I am using the formula <em>Vt = ((1-e^kt)/kt)) (q^2)/2k</em>, where <em>Vt</em> is the variance at time <em>t</em>. I have the two variables <em>(k,q)</em> in the above equation. I have to determine <em>k(hat)</em> and <em>q(hat)</em>. Can I define the above formula as a user-defined formula and give it as an argument to the <code>nls()</code> function?</p>
http://stackoverflow.com/questions/1855800/1-vs-1-vote-calculate-ratings-flickchart-com01 vs 1 vote: calculate ratings (Flickchart.com)marco92w2009-12-06T16:25:04Z2009-12-06T16:53:19Z
<p>Instead of rating items with grades from 1 to 10, I would like to have 1 vs 1 "fights". Two items are displayed beside each other and you pick the one which you like more. Based on these "fight" results, an algorithm should calculate ratings for each item.</p>
<p>You can see this approach on <a href="http://www.flickchart.com/faq" rel="nofollow">Flickchart.com</a> where movies are rated using this approach.</p>
<p>It looks like this:</p>
<p><img src="http://i45.tinypic.com/2nv3ugy.jpg" alt="Screenshot" /></p>
<p>As you can see, items are pushed upwards if they win a "fight". The ranking is always changing based on the "fight" results. But this can't be only based on the win quote (here 54%) since it's harder to win against "Titanic" than against "25th Hour" or so.</p>
<p>There are a few things which are quite unclear for me:
- How are the ratings calculated? How do you decide which film is on the first place in the ranking? You have to consider how often an items wins and how good are the beaten items.
- How to choose which items have a "fight"?</p>
<p>Of course, you can't tell me how Flickchart exactly does this all. But maybe you can tell me how it could be done. Thanks in advance!</p>
http://stackoverflow.com/questions/1855671/implementing-wilson-score-in-sql1Implementing Wilson Score in SQLdansays2009-12-06T15:21:53Z2009-12-06T16:14:11Z
<p>We have a relatively small table that we would like to sort based on rating, using the <a href="http://www.evanmiller.org/how-not-to-sort-by-average-rating.html" rel="nofollow">Wilson interval</a> or a reasonable equivalent. I'm a reasonably smart guy, but my math fu is nowhere near strong enough to understand this:</p>
<p><img src="http://www.evanmiller.org/rating-equation.png" alt="Wilson Score" title=""></p>
<p>The above formula, I am told, calculates a score for a positive/negative (thumbs up/thumbs down) voting system. I've never taken a statistics course, and it's been 15 years since I've done any sort of advanced mathematics. I don't have a clue what the little hat that the <em>p</em> is wearing means, or what the backwards Jesus fish beneath <em>z</em> indicates.</p>
<p>I would like to know two things:</p>
<ol>
<li><p>Can this formula be altered to accommodate a 5-star rating system? I found <a href="http://www.goproblems.com/test/wilson/wilson.php?v1=0&v2=0&v3=3&v4=0&v5=0" rel="nofollow">this</a>, but the author expresses his doubts as to the accuracy of his formula.</p></li>
<li><p>How can this formula be expressed in a SQL function? Note that I do not need to calculate and sort in real-time. The score can be calculated and cached daily.</p></li>
<li><p>Am I overlooking something built-in to Microsoft SQL Server?</p></li>
</ol>
http://stackoverflow.com/questions/1853703/plotting-functions-in-r1Plotting functions in Rwomble2009-12-05T22:38:22Z2009-12-05T23:43:56Z
<p>Is there a way of overlaying a mathematical function on top of data using ggplot?</p>
<pre><code>## add ggplot2
library(ggplot2)
# function
eq = function(x){x*x}
# Data
x = (1:50)
y = eq(x)
# Make plot object
p = qplot(
x, y,
xlab = "X-axis",
ylab = "Y-axis",
)
# Plot Equation
c = curve(eq)
# Combine data and function
p + c #?
</code></pre>
<p>In this case my data is generated using the function, but I want to understand how to use 'curve()' with ggplot. Thanks.</p>
http://stackoverflow.com/questions/1814466/dynamic-programming-sum-of-products7Dynamic Programming: Sum-of-productsdsimcha2009-11-29T02:37:19Z2009-12-05T23:30:02Z
<p>Let's say you have two lists, L1 and L2, of the same length, N. We define prodSum as:</p>
<pre><code>def prodSum(L1, L2) :
ans = 0
for elem1, elem2 in zip(L1, L2) :
ans += elem1 * elem2
return ans
</code></pre>
<p>Is there an efficient algorithm to find, assuming L1 is sorted, the number of permutations of L2 such that prodSum(L1, L2) < some pre-specified value?</p>
<p>If it would simplify the problem, you may assume that L1 and L2 are both lists of integers from [1, 2, ..., N].</p>
<p>Edit: Managu's answer has convinced me that this is impossible without assuming that L1 and L2 are lists of integers from [1, 2, ..., N]. I'd still be interested in solutions that assume this constraint.</p>
http://stackoverflow.com/questions/1797363/how-do-you-detect-outliers-on-multivariate-data0How do you detect outliers on multivariate data?unknown (yahoo)2009-11-25T14:42:53Z2009-12-05T13:05:24Z
<p>I am trying to do a regression problem but I have 3 independent variables and not 1 so it is hard to detect outliers from a scatter graph. Any suggestions?</p>
http://stackoverflow.com/questions/1834944/what-is-a-good-pure-perl-on-line-or-streaming-statistics-package5What is a good pure Perl on-line or streaming statistics package?Jeremy Wall2009-12-02T18:40:49Z2009-12-04T15:35:18Z
<p>Are there any prerolled streaming statistics libraries for Perl à la: <a href="http://en.wikipedia.org/wiki/Algorithms%5Ffor%5Fcalculating%5Fvariance#On-line%5Falgorithm" rel="nofollow">http://en.wikipedia.org/wiki/Algorithms%5Ffor%5Fcalculating%5Fvariance#On-line%5Falgorithm</a></p>
<p>I haven't found anything on CPAN yet and I really don't want to have to code one myself.</p>
http://stackoverflow.com/questions/1843913/how-many-times-was-a-ruby-gem-installed-via-gem-install-or-gem-update0How many times was a Ruby gem installed via `gem install` or `gem update`Ċ½eljko Filipin2009-12-03T23:45:27Z2009-12-04T09:20:35Z
<p>I am trying to find out how many times a gem was installed via <code>gem install</code> or <code>gem update</code>.</p>
<p>For example, Watir 1.6.2:</p>
<ul>
<li>it was installed 97 times via gemcutter (<a href="http://gemcutter.org/gems/watir/versions/1.6.2" rel="nofollow">http://gemcutter.org/gems/watir/versions/1.6.2</a>)</li>
<li>it is downloaded 4,027 times from <a href="http://rubyforge.org/frs/?group%5Fid=104" rel="nofollow">http://rubyforge.org/frs/?group%5Fid=104</a></li>
</ul>
<p>I have been told that 4,027 does not include installs made via <code>gem install</code> or <code>gem update</code>. Is that information correct? If yes, where can I find the numbers for <code>gem install</code> and <code>gem update</code>? I have looked everywhere I could think of at rubyforge, but no luck.</p>
http://stackoverflow.com/questions/1697013/how-do-i-efficiently-estimate-a-probability-based-on-a-small-amount-of-evidence1How do I efficiently estimate a probability based on a small amount of evidence?sanity2009-11-08T16:13:42Z2009-12-04T01:16:08Z
<p>I've been trying to find an answer to this for months (to be used in a machine learning application), it doesn't seem like it should be a terribly hard problem, but I'm a software engineer, and math was never one of my strengths.</p>
<p>Here is the scenario:</p>
<p>I have a (possibly) unevenly weighted coin and I want to figure out the probability of it coming up heads. I know that coins from the same box that this one came from have an average probability of <strong>p</strong>, and I also know the standard deviation of these probabilities (call it <strong>s</strong>).</p>
<p>(If other summary properties of the probabilities of other coins aside from their mean and stddev would be useful, I can probably get them too.)</p>
<p>I toss the coin <strong>n</strong> times, and it comes up heads <strong>h</strong> times.</p>
<p>The naive approach is that the probability is just <strong>h/n</strong> - but if n is small this is unlikely to be accurate.</p>
<p>Is there a computationally efficient way (ie. doesn't involve very very large or very very small numbers) to take <strong>p</strong> and <strong>s</strong> into consideration to come up with a more accurate probability estimate, even when <strong>n</strong> is small?</p>
<p>I'd appreciate it if any answers could use pseudocode rather than mathematical notation since I find most mathematical notation to be impenetrable ;-)</p>
<p><hr></p>
<p><strong>Other answers:</strong>
There are some other answers on SO that are similar, but the answers provided are unsatisfactory. For example <a href="http://stackoverflow.com/questions/967709/estimating-a-probability-given-other-probabilities-from-a-prior/967894#967894">this</a> is not computationally efficient because it quickly involves numbers way smaller than can be represented even in double-precision floats. And <a href="http://stackoverflow.com/questions/1133193/efficiently-determining-the-probability-of-a-user-clicking-a-hyperlink">this</a> one turned out to be incorrect.</p>
http://stackoverflow.com/questions/1824633/statistical-mathematics-issues3Statistical mathematics issuesnhaa1232009-12-01T07:54:11Z2009-12-03T16:42:17Z
<p>Hello,</p>
<p>I'm developing a Texas Hold 'em hand-range equity evaluator, which evaluates hand-distributions with Monte Carlo -simulation. I've faced two annoying problems which behaviors I cannot give any reason.</p>
<p><b>Problem #1:</b></p>
<p>In a nut shell, the evaluator works by first picking up hands from player's hand-distributions. Say, that we have the following:</p>
<pre>AA - 6 hands
KK - 6 hands</pre>
<p>We pick up a board cards and after that, one hand randomly from both players which does not collide with the board cards.<br />
The given example gives the following equities, which are correct:</p>
<pre>AA = ~81.95%
KK = ~18.05%</pre>
<p>Now the problem. If the evaluator first chooses the hole cards and the board cards after that, this doesn't work. Then I get something like this:</p>
<pre>AA = ~82.65%
KK = ~17.35&</pre>
<p>Why does it get biased? What does it matter, if one chooses hole cards or board cards first? Obviously it does, but cannot understand why.</p>
<p><b>Problem #2:</b></p>
<p>If I have ten hand-distributions with the following ranges:</p>
<pre>AA
KK+
QQ+
JJ+
TT+
99+
88+
77+
66+
55+</pre>
<p>my evaluator is very slow. This is due the fact that when choosing hole cards from the distributions, there's a lot of collisions. There's many trials before we get ten hole cards and a board, which does not collide. So, I changed the method how the evaluator chooses a hand from the distribution:</p>
<pre><code>
// Original - works.
void HandDistribution::Choose(unsigned __int64 &usedCards, bool &collided)
{
_pickedHand = _hands[(*Random)()];
collided = (_pickedHand & usedCards) != 0;
usedCards |= _pickedHand;
}
// Modified - Doesn't work; biased equities.
void HandDistribution::Choose(unsigned __int64 &usedCards, bool &collided)
{
// Let's try to pick-up a hand from this distribution ten times, before
// we give up.
// NOTE: It doesn't matter, how many attempts there are (except one). 2 or 10,
// same biased results.
for (unsigned int attempts = 0; i < 10; ++i) {
_pickedHand = _hands[(*Random)()];
collided = (_pickedHand & usedCards) != 0;
if (!collided) {
usedCards |= _pickedHand;
return;
}
}
// All the picks collided with other hole cards...
}
</code></pre>
<p>The alternative method is much faster, since there are not so many collisions anymore. However, the results are VERY biased. Why? What does it matter, if the evaluator chooses a hand by one attempt or several? Again, obviously it does, but I cannot figure out why.</p>
<p><b>Edit:</b></p>
<p>FYI, I am using Boost's random number generator, more precisely <i>boost::lagged_fibonacci607</i>. Though, the same behavior occurs with mersenne twister as well.</p>
<p>Here's a the code as it is:</p>
<pre><code>
func Calculate()
{
for (std::vector<HandDistribution *>::iterator it = _handDistributions.begin(); it != _handDistributions.end(); ++it) {
(*it)->_equity = 0.0;
(*it)->_wins = 0;
(*it)->_ties = 0.0;
(*it)->_rank = 0;
}
std::bitset<32> bsBoardCardsHi(static_cast<unsigned long>(_boardCards >> 32)),
bsBoardCardsLo(static_cast<unsigned long>(_boardCards & 0xffffffff));
int cardsToDraw = 5 - (bsBoardCardsHi.count() + bsBoardCardsLo.count()), count = 0;
HandDistribution *hd_first = *_handDistributions.begin(), *hd_current, *hd_winner;
unsigned __int64 deadCards = 0;
boost::shared_array<unsigned __int64> boards = boost::shared_array<unsigned __int64>(new unsigned __int64[2598960]);
memset(boards.get(), 0, sizeof(unsigned __int64) * 2598960);
hd_current = hd_first;
do {
deadCards |= hd_current->_deadCards; // All the unary-hands.
hd_current = hd_current->_next;
} while (hd_current != hd_first);
if (cardsToDraw > 0)
for (int c1 = 1; c1 < 49 + (5 - cardsToDraw); ++c1)
if (cardsToDraw > 1)
for (int c2 = c1 + 1; c2 < 50 + (5 - cardsToDraw); ++c2)
if (cardsToDraw > 2)
for (int c3 = c2 + 1; c3 < 51 + (5 - cardsToDraw); ++c3)
if (cardsToDraw > 3)
for (int c4 = c3 + 1; c4 < 52 + (5 - cardsToDraw); ++c4)
if (cardsToDraw > 4)
for (int c5 = c4 + 1; c5 < 53; ++c5) {
boards[count] = static_cast<unsigned __int64>(1) << c1
| static_cast<unsigned __int64>(1) << c2
| static_cast<unsigned __int64>(1) << c3
| static_cast<unsigned __int64>(1) << c4
| static_cast<unsigned __int64>(1) << c5;
if ((boards[count] & deadCards) == 0)
++count;
}
else {
boards[count] = static_cast<unsigned __int64>(1) << c1
| static_cast<unsigned __int64>(1) << c2
| static_cast<unsigned __int64>(1) << c3
| static_cast<unsigned __int64>(1) << c4;
if ((boards[count] & deadCards) == 0)
++count;
}
else {
boards[count] = static_cast<unsigned __int64>(1) << c1
| static_cast<unsigned __int64>(1) << c2
| static_cast<unsigned __int64>(1) << c3;
if ((boards[count] & deadCards) == 0)
++count;
}
else {
boards[count] = static_cast<unsigned __int64>(1) << c1
| static_cast<unsigned __int64>(1) << c2;
if ((boards[count] & deadCards) == 0)
++count;
}
else {
boards[count] = static_cast<unsigned __int64>(1) << c1;
if ((boards[count] & deadCards) == 0)
++count;
}
else {
boards[0] = _boardCards;
count = 1;
}
_distribution = boost::uniform_int<>(0, count - 1);
boost::variate_generator<boost::lagged_fibonacci607&, boost::uniform_int<> > Random(_generator, _distribution);
wxInitializer initializer;
Update *upd = new Update(this);
_trial = 0;
_done = false;
if (upd->Create() == wxTHREAD_NO_ERROR)
upd->Run();
hd_current = hd_first;
::QueryPerformanceCounter((LARGE_INTEGER *) &_timer);
do {
hd_current = hd_first;
unsigned __int64 board = boards[Random()] | _boardCards, usedCards = _deadCards | board;
bool collision;
do {
hd_current->Choose(usedCards, collision);
hd_current = hd_current->_next;
} while (hd_current != hd_first && !collision);
if (collision) {
hd_first = hd_current->_next;
continue;
}
unsigned int best = 0, s = 1;
// Evaluate all hands.
do {
hd_current->_pickedHand |= board;
unsigned long i, l = static_cast<unsigned long>(hd_current->_pickedHand >> 32);
int p;
bool f = false;
if (_BitScanForward(&i, l)) {
p = _evaluator[53 + i + 32];
l &= ~(static_cast<unsigned long>(1) << i);
f = true;
}
if (f)
while (_BitScanForward(&i, l)) {
l &= ~(static_cast<unsigned long>(1) << i);
p = _evaluator[p + i + 32];
}
l = static_cast<unsigned long>(hd_current->_pickedHand & 0xffffffff);
if (!f) {
_BitScanForward(&i, l);
p = _evaluator[53 + i];
l &= ~(static_cast<unsigned long>(1) << i);
}
while (_BitScanForward(&i, l)) {
l &= ~(static_cast<unsigned long>(1) << i);
p = _evaluator[p + i];
}
hd_current->_rank = p;
if (p > best) {
hd_winner = hd_current;
s = 1;
best = p;
} else if (p == best)
++s;
hd_current = hd_current->_next;
} while (hd_current != hd_first);
if (s > 1) {
for (std::vector<HandDistribution *>::iterator it = _handDistributions.begin(); it != _handDistributions.end(); ++it) {
if ((*it)->_rank == best) {
(*it)->_ties += 1.0 / s;
(*it)->_equity += 1.0 / s;
}
}
} else {
++hd_winner->_wins;
++hd_winner->_equity;
}
++_trial;
hd_first = hd_current->_next;
} while (_trial < trials);
}
</code></pre>
http://stackoverflow.com/questions/1838651/what-to-use-to-create-bar-line-and-pie-charts-with-javascript-compatible-with-al1What to use to create bar, line and pie charts with javascript compatible with all major browsers?marcgg2009-12-03T09:10:00Z2009-12-03T15:08:58Z
<p>I used to work with <a href="http://code.google.com/p/flot/" rel="nofollow">flot</a> but it doesn't support pie charts so I'm forced to change. </p>
<p>I <a href="http://stackoverflow.com/questions/1223537/pie-chart-with-jquery">just saw</a> <a href="http://www.jscharts.com/" rel="nofollow">JS Charts</a>, but their documentation is very obscure regarding cross browser compatibility (I need it to be IE6+ compliant :). Also this will be for commercial use, so I'd rather have something that I can use free of charge</p>
<p><a href="http://www.maxb.net/scripts/jgcharts/include/demo/#1" rel="nofollow">jQuery Google chart</a> looks really nice and is <a href="http://code.google.com/p/google-charts-on-rails/" rel="nofollow">well integrated with rails</a> (the framework I'm using) but I'm not sure how good it is.</p>
<p>So what do you guys use? What would you recommend keeping in mind that:</p>
<ul>
<li><p>It will be for commercial use (I can deal with a license, but I'd rather avoid that)</p></li>
<li><p>It needs to be javascript (no svg, no flash please)</p></li>
<li><p><strong>It needs to be compatible with IE6+</strong>, FF, Chrome, Opera and Safari</p></li>
<li><p>It needs to be pretty ^^</p></li>
<li><p>If it uses jQuery it's even better</p></li>
</ul>
http://stackoverflow.com/questions/1191689/hierarchical-bayes-for-r-or-python1Hierarchical Bayes for R or Pythongappy2009-07-28T02:43:03Z2009-12-02T11:22:36Z
<p>Hierarchical Bayes models are commonly used in Marketing, Political Science, and Econometrics. Yet, the only package I know of is <code>bayesm</code>, which is really a companion to a book (<em>Bayesian Statistics and Marketing</em>, by Rossi, et al.) Am I missing something? Is there a software package for R or Python doing the job out there, and/or a worked-out example in the associated language? </p>
http://stackoverflow.com/questions/1830750/best-method-for-gathering-ntfs-file-access-statistics1Best method for gathering NTFS file access statistics?Guy Gordon2009-12-02T05:00:24Z2009-12-02T05:09:24Z
<p>I'd like advice on choosing a method to collect file access statistics on NTFS volumes under Windows Vista and Windows 7 (32 & 64-bit). I'd like to count file create/open, delete, read/write accesses for every file. </p>
<p>API hooking is out. I need system-wide counts, and both 32 and 64-bit OS without mucking up the OS. Also, I don't think Shell Notification would work.</p>
<p>I know I could do it by installing a file system filter driver. The Windows DDK has a samples, and that's how Mark Russinovich's FileMon (Sysinternals) works.</p>
<p>I think I might also accomplish this using WMI, but I'm not sure. That is one crazy messed up API. But if Microsoft will gather the stats for me, I'll use it.</p>
<p>So the question is, which method would be best & why. Am I missing another possibility, and would WMI do it?</p>
http://stackoverflow.com/questions/1828874/generating-statistics-from-git-repository0Generating statistics from Git repositoryBastiBense2009-12-01T20:57:24Z2009-12-01T22:11:25Z
<p>I'm looking for some good tools/scripts that allow me to generate a few statistics from a git repository. I've seen this feature on some code hosting sites, and they contained information like...</p>
<ul>
<li>commits per author</li>
<li>commits per day/week/year/etc.</li>
<li>lines of code over time</li>
<li>graphs</li>
<li>... much more</li>
</ul>
<p>Basically I just want to get an idea how much my project grows over time, which developer commits most code and so on.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1078065/most-readable-programming-language-to-simulate-10-000-chutes-and-ladders-game-pla3most readable programming language to simulate 10,000 chutes and ladders game plays?landon97202009-07-03T06:55:13Z2009-12-01T18:10:25Z
<p>I'm wondering what language would be most suitable to simulate the game Chutes and Ladders (Snakes and Ladders in some countries). I'm looking to collect basic stats, like average and standard deviation of game length (in turns), probability of winning based on turn order (who plays first, second, etc.), and anything else of interest you can think of. Specifically, I'm looking for the implementation that is most readable, maintainable, and modifiable. It also needs to be very brief.</p>
<p>If you're a grown-up and don't spend much time around young kids then you probably don't remember the game that well. I'll remind you:</p>
<ul>
<li>There are 100 squares on the board.</li>
<li>Each player takes turn spinning a random number from 1-6 (or throwing a dice).</li>
<li>The player then advances that many squares.</li>
<li>Some squares are at the base of a ladder; landing on one of these squares means the player gets to climb the ladder, advancing the player's position to a predetermined square.</li>
<li>Some squares are at the top of a slide (chute or snake); landing on one of these squares means the player must slide down, moving the player's position back to a predetermined square.</li>
<li>Whichever player gets to position 100 first is the winner.</li>
</ul>
http://stackoverflow.com/questions/1820590/problem-storing-plot-objects-in-a-list-in-r2Problem storing plot objects in a list in Rwomble2009-11-30T15:45:46Z2009-12-01T16:31:46Z
<p>I asked <a href="http://stackoverflow.com/questions/1816480/generating-names-iteratively-in-r-for-storing-plots">this</a> question yesterday about storing a plot within an object. I tried implementing the first approach (aware that I did not specify that I was using qplot() in my original question) and noticed that it did not work as expected.</p>
<pre><code>library(ggplot2) # add ggplot2
string = "C:/example.pdf" # Setup pdf
pdf(string,height=6,width=9)
x_range <- range(1,50) # Specify Range
# Create a list to hold the plot objects.
pltList <- list()
pltList[]
for(i in 1 : 16){
# Organise data
y = (1:50) * i * 1000 # Get y col
x = (1:50) # get x col
y = log(y) # Use natural log
# Regression
lm.0 = lm(formula = y ~ x) # make linear model
inter = summary(lm.0)$coefficients[1,1] # Get intercept
slop = summary(lm.0)$coefficients[2,1] # Get slope
# Make plot name
pltName <- paste( 'a', i, sep = '' )
# make plot object
p <- qplot(
x, y,
xlab = "Radius [km]",
ylab = "Services [log]",
xlim = x_range,
main = paste("Sample",i)
) + geom_abline(intercept = inter, slope = slop, colour = "red", size = 1)
print(p)
pltList[[pltName]] = p
}
# close the PDF file
dev.off()
</code></pre>
<p>I have used sample numbers in this case so the code runs if it is just copied. I did spend a few hours puzzling over this but I cannot figure out what is going wrong. It writes the first set of pdfs without problem, so I have 16 pdfs with the correct plots.</p>
<p>Then when I use this piece of code:</p>
<pre><code>string = "C:/test_tabloid.pdf"
pdf(string, height = 11, width = 17)
grid.newpage()
pushViewport( viewport( layout = grid.layout(3, 3) ) )
vplayout <- function(x, y){viewport(layout.pos.row = x, layout.pos.col = y)}
counter = 1
# Page 1
for (i in 1:3){
for (j in 1:3){
pltName <- paste( 'a', counter, sep = '' )
print( pltList[[pltName]], vp = vplayout(i,j) )
counter = counter + 1
}
}
dev.off()
</code></pre>
<p>the result I get is the last linear model line (abline) on every graph, but the data does not change. When I check my list of plots, it seems that all of them become overwritten by the most recent plot (with the exception of the abline object).</p>
<p>A less important secondary question was how to generate a muli-page pdf with several plots on each page, but the main goal of my code was to store the plots in a list that I could access at a later date.</p>
<p>Thank you.</p>
http://stackoverflow.com/questions/1822921/best-way-to-keep-track-of-current-online-users1Best way to keep track of current online usersmlb2009-11-30T22:38:16Z2009-12-01T14:31:19Z
<p>I have a requirement that my site always display the number of users currently online. For example, "35741 Users Currently Online". This is not based on a log in, simply how many users are currently on my site. I have tried using Session Start/Session End for this, however session end is not reliable. Therefore I get inflated numbers, as my session start adds numbers but session end doesn't remove them because it doesn't fire.</p>
<p>There is no additional information to be gathered from this (reporting, etc), it's simply requested that the number show up. Very simple request that's turning into a huge deal. Any help is appreciated. </p>
<p>EDIT:</p>
<p>I should specify that I have also tried using a database for this. Simple table that contains a session ID and a last activity column. With each page hit, I check to see if the session is in my database. If not, insert. If so, update with activity time. Then I run a procedure that sweeps the database looking for sessions with no activity in the last 20 minutes. This approach seemed to kill my SQL server and/or IIS. Had to restart the site.</p>
http://stackoverflow.com/questions/1801647/what-is-the-best-source-for-typo-statistics5What is the best source for typo statistics?unknown (google)2009-11-26T05:08:51Z2009-12-01T01:25:09Z
<p>I am looking for a reliable source that would provide some statistics on what keys are the most frequently mistyped.</p>
<p>For example: is "a" and "s" more commonly mistyped compared with "m" and "n"?</p>
<p>if yes what are the underlying data i.e. "a" is mistyped instead of "s" when the previous letter is "o" in 25% of cases but contrary "s" is mistyped more often instead of "a" when the previous character is "r." Etc.</p>
http://stackoverflow.com/questions/1809518/getting-the-contents-of-a-library-interactively-in-r3Getting the contents of a library interactively in Rsignalseeker2009-11-27T16:01:34Z2009-11-30T14:48:35Z
<p>Is there an equivalent of dir function (python) in R?</p>
<p>When I load a library in R like -</p>
<blockquote>
<p>library(vrtest)</p>
</blockquote>
<p>I want to know all the functions that are in that library.</p>
<p>In Python, dir(vrtest) would be a list of all attributes of vrtest.</p>
<p>I guess in general, I am looking for the best way to get help on R while running it in ESS on linux. I see all these man pages for the packages I have installed, but I am not sure how I can access them.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1764974/can-admob-be-used-just-for-iphone-app-statistics-analytics0Can AdMob be used just for iPhone app statistics/analytics?Dimitris2009-11-19T17:13:19Z2009-11-30T14:17:35Z
<p>Can AdMob be used just for iPhone app statistics/analytics or is it's sole purpose to add advertisements in the app? I want to add a statistics package to my app and track it's usage, and since Google bought AdMob I thought I should give it a try. But I don't want to display ads in my app.</p>
<p>Is there any other good and free stats service, apart from Pinch Analytics? Which is the best one?</p>
http://stackoverflow.com/questions/1798618/how-do-i-generate-quasi-random-statistical-data-sets0How do I generate quasi-random statistical data sets?Jason Baker2009-11-25T17:33:24Z2009-11-30T09:28:23Z
<p>I'm looking for a tool that will let me generate a data set with certain statistical properties. For example, suppose I want to generate 1 million integers with x number of outliers for use in testing.</p>
<p>Are there any tools for generating test data sets like this? I don't necessarily need anything fancy, just some basic functionality.</p>
http://stackoverflow.com/questions/693269/where-to-find-an-implementation-of-modern-portfolio-statistics-in-java-or-oracle0Where to find an implementation of Modern Portfolio Statistics in Java or Oracle (eg sharpe ratio, sortinto ratio etc)alan2009-03-28T18:30:32Z2009-11-30T07:14:29Z
<p>I require an a java component or oracle package that implements all of the formulas in "Modern Portfolio Theory".
(They do not need to be open source, they can be commerical components.)</p>
<p>My searching has yet to find anything suitable.</p>
<p>Any help on this would be greatly appreciated, I would like to buy a component to do this rather than writing it myself.</p>
<p>Thank you</p>
http://stackoverflow.com/questions/1818122/cumulative-average-number-of-records-created-for-specific-day-of-week-or-date-ran1Cumulative average number of records created for specific day of week or date range...Wilhelm Murdoch2009-11-30T06:20:38Z2009-11-30T06:40:07Z
<p>Yeah, so I'm filling out a requirements document for a new client project and they're asking for growth trends and performance expectations calculated from existing data within our database.</p>
<p>The best source of data for something like this would be our logs table as we pretty much log every single transaction that occurs within our application.</p>
<p>Now, here's the issue, I don't have a whole lot of experience with MySql when it comes to collating cumulative sum and running averages. I've thrown together the following query which kind of makes sense to me, but it just keeps locking up the command console. The thing takes forever to execute and there are only 80k records within the test sample.</p>
<p>So, given the following basic table structure:</p>
<pre><code>id | action | date_created
1 | 'merp' | 2007-06-20 17:17:00
2 | 'foo' | 2007-06-21 09:54:48
3 | 'bar' | 2007-06-21 12:47:30
... thousands of records ...
3545 | 'stab' | 2007-07-05 11:28:36
</code></pre>
<p>How would I go about calculating the average number of records created for each given day of the week?</p>
<pre><code>day_of_week | average_records_created
1 | 234
2 | 23
3 | 5
4 | 67
5 | 234
6 | 12
7 | 36
</code></pre>
<p>I have the following query which makes me want to murderdeathkill myself by casting my body down an elevator shaft... and onto some bullets:</p>
<pre><code>SELECT
DISTINCT(DAYOFWEEK(DATE(t1.datetime_entry))) AS t1.day_of_week,
AVG((SELECT COUNT(*) FROM VMS_LOGS t2 WHERE DAYOFWEEK(DATE(t2.date_time_entry)) = t1.day_of_week)) AS average_records_created
FROM VMS_LOGS t1
GROUP BY t1.day_of_week;
</code></pre>
<p>Halps? Please, don't make me cut myself again. :'(</p>
http://stackoverflow.com/questions/1816200/chisq-test-doesnt-print-results-when-in-a-loop0chisq.test doesn't print results when in a loopgd0472009-11-29T17:54:21Z2009-11-29T21:37:31Z
<p>I don't think I need to explain exactly what the code does. The point is that while performing the chisq.test outside the loop, I get a result like this (expected):</p>
<pre><code> Chi-squared test for given probabilities
data: observed
X-squared = 185912, df = 5, p-value < 2.2e-16
</code></pre>
<p>but when I try to do the test in a loop, the expected result does not appear </p>
<pre><code>total <- dim(crs$dataset_init)[1]
expected.fr <- cl.popul / total
for (i in 1:dim(cl.vs.Onerall)[1] ) {
if (cl.vs.Onerall[i,1] > 0) {
observed <- cl.vs.Onerall[i,2:(clust_no + 1)]
print(rownames(cl.vs.Onerall)[i])
chisq.test(observed, p=expected.fr)
print("------------------------------")
}
}
</code></pre>
<p>Any ideas would be greatly appreciated!</p>
http://stackoverflow.com/questions/1309263/rolling-median-algorithm-in-c22Rolling median algorithm in CAWB2009-08-20T22:50:43Z2009-11-27T19:38:49Z
<p>I am currently working on an algorithm to implement a rolling median filter (analogous to a rolling mean filter) in C. From my search of the literature, there appear to be two reasonably efficient ways to do it. The first is to sort the initial window of values, then perform a binary search to insert the new value and remove the exiting one at each iteration.</p>
<p>The second (from Hardle and Steiger, 1995, JRSS-C, Algorithm 296) builds a double-ended heap structure, with a maxheap on one end, a minheap on the other, and the median in the middle. This yields a linear-time algorithm instead of one that is O(n log n).</p>
<p>Here is my problem: implementing the former is doable, but I need to run this on millions of time series, so efficiency matters a lot. The latter is proving very difficult to implement. I found code in the Trunmed.c file of the code for the stats package of R, but it is rather indecipherable.</p>
<p>Does anyone know of a well-written C implementation for the linear time rolling median algorithm?</p>
<p>Edit: Link to Trunmed.c code <a href="http://google.com/codesearch/p?hl=en&sa=N&cd=1&ct=rc#mYw3h%5FLb%5Fe0/R-2.2.0/src/library/stats/src/Trunmed.c" rel="nofollow">http://google.com/codesearch/p?hl=en&sa=N&cd=1&ct=rc#mYw3h%5FLb%5Fe0/R-2.2.0/src/library/stats/src/Trunmed.c</a></p>
http://stackoverflow.com/questions/1455370/understanding-t-sql-stdev-stdevp-var-and-varp0Understanding T-SQL stdev, stdevp, var, and varpJames Alexander2009-09-21T16:16:03Z2009-11-27T17:00:03Z
<p>I'm having a difficult time understand what these statistics functions do and how they work. I'm having an even more difficult time understanding how stdev works vs stdevp and the var equivelant. Can someone please break these down into dumb for me?</p>
http://stackoverflow.com/questions/879330/statistic-for-requests-in-deployed-vps-servers0Statistic for requests in deployed VPS serversdynback.com2009-05-18T19:23:28Z2009-11-26T15:32:41Z
<p>I was thinking about different scalability features, and suddenly understand that I don't really know how much can handle one server (VPS). The question for them who have loaded projects.</p>
<p>Imagine server with:</p>
<ol>
<li>1 Gb Ram</li>
<li>1 Xeon CPU</li>
<li>CentOS</li>
<li>LAMP with FastCGI</li>
<li>PostgreSQL on the same machine</li>
</ol>
<p>And we need to calculate count of request, so I decided to take middle parameters for app:</p>
<ol>
<li>80% of requests using one call to db with indexes</li>
<li>40-50 Kb of html</li>
<li>Cache in 60% of cases</li>
</ol>
<p>Add some other parameters, and lets calculate, or tell your story about your loads?</p>
http://stackoverflow.com/questions/689827/realistic-time-estimates-for-progress-bars-etc8Realistic time estimates for progress bars etc.f3lix2009-03-27T13:47:29Z2009-11-26T09:13:06Z
<p>I know I am not the only one who does not like progress bars or time estimates which give unrealistic estimates in software. Best examples are installers which jump from 0% to 90% in 10 seconds and then take an hour to complete the final 10%.</p>
<p>Most of the time programmers just estimate the steps to complete a task and then display <em>currentstep/totalsteps</em> as a percentage, ignoring the fact that each step might take a different time to complete. For example, if you insert rows into a database, the insertion time can increase with the number of inserted rows (easy example), or the time to copy files does not only depend on the size of the file but also on the location on the disk and how fragmented it is.</p>
<p>Today, I asked myself if anybody already tried to model this and maybe created a <strong>library with a configurable robust estimator</strong>. I know that it is difficult to give robust estimates because external factors (network connection, user runs other programs, etc) play their part. </p>
<p>Maybe there is also a solution that uses profiling to set up a better estimator, or one could use machine learning approaches.</p>
<p>Does anybody know of advanced solutions for this problem?</p>
<p><hr /></p>
<p>In connection to this, I found the article <a href="http://www.chrisharrison.net/projects/progressbars/index.html" rel="nofollow">Rethinking the progress bar</a> very interesing. It shows how progress bars can change the perception of time and how you can use those insights to create progress bars that seem to be faster.</p>
<p><hr /></p>
<p><strong>EDIT</strong>:
I can think of ways how to manually tune the time estimate, and even with a 'estimator library' I will have to fine tune the algorithm. But I think this problem could be tackled with statistical tools. Of course, the estimator would collect data during the process to create better estimates for the next steps. </p>
<p>What I do now is to take the average time something took in the previous step (steps grouped by type and normalized by e.g. file size, size of transaction) and take this average as estimate for the next steps (again: counting in different types and sizes).</p>
<p>Now, I know <strong>there are better statistical tools</strong> to create estimators and I wonder if anybody applied those to the problem.</p>
http://stackoverflow.com/questions/1800358/best-way-to-gather-statistics-from-web-widget0best way to gather statistics from web widgetvsync2009-11-25T22:26:48Z2009-11-25T22:26:48Z
<p>I have a web widget, which is basically a JS file that people<br />
can reference to in their website and it does something cool lets say.</p>
<p>currently I'm gathering statistics by doing an AJAX request to some<br />
dummy image file on my server, its like this:</p>
<pre><code>http://www.myserver.com/image.png?views=120&openings=80&close=65
</code></pre>
<p>I monitor these hits to my server, and extract the data I need.<br /><br />
<strong>Is this the best way to do this?</strong></p>
http://stackoverflow.com/questions/1797712/error-when-generating-pdf-using-script-in-r1Error when generating pdf using script in Rwomble2009-11-25T15:30:42Z2009-11-25T19:31:17Z
<p>I'm using R to loop through the columns of a data frame and make a graph of the resulting analysis. I don't get any errors when the script runs, but it generates a pdf that cannot be opened.</p>
<p>If I run the content of the script, it works fine. I wondered if there is a problem with how quickly it is looping through, so I tried to force it to pause. This did not seem to make a difference. I'm interested in any suggestions that people have, and I'm also quite new to R so suggestions as to how I can improve the approach are welcome too. Thanks.</p>
<pre><code>for (i in 2:22) {
# Organise data
pop_den_z = subset(pop_den, pop_den[i] != "0") # Remove zeros
y = pop_den_z[,i] # Get y col
x = pop_den_z[,1] # get x col
y = log(y) # Log transform
# Regression
lm.0 = lm(formula = y ~ x) # make linear model
inter = summary(lm.0)$coefficients[1,1] # Get intercept
slop = summary(lm.0)$coefficients[2,1] # Get slope
# Write to File
a = c(i, inter, slop)
write(a, file = "C:/pop_den_coef.txt", ncolumns = 3, append = TRUE, sep = ",")
## Setup pdf
string = paste("C:/LEED/results/Images/R_graphs/Pop_den", paste(i-2), "City.pdf")
pdf(string, height = 6, width = 9)
p <- qplot(
x, y,
xlab = "Radius [km]",
ylab = "Population Density [log(people/km)]",
xlim = x_range,
main = "Analysis of Cities"
)
# geom_abline(intercept,slope)
p + geom_abline(intercept = inter, slope = slop, colour = "red", size = 1)
Sys.sleep(5)
### close the PDF file
dev.off()
}
</code></pre>