3
votes
4answers
211 views
Statistical mathematics issues
Hello,
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 …
0
votes
2answers
34 views
Generating statistics from Git repository
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...
…
1
vote
5answers
95 views
Problem storing plot objects in a list in R
I asked this 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 …
1
vote
6answers
73 views
Best way to keep track of current online users
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 …
6
votes
3answers
197 views
+150
Dynamic Programming: Sum-of-products
Let's say you have two lists, L1 and L2, of the same length, N. We define prodSum as:
def prodSum(L1, L2) :
ans = 0
for elem1, elem2 in zip(L1, L2) :
ans += elem1 * elem2
return …
1
vote
3answers
29 views
Cumulative average number of records created for specific day of week or date range…
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.
The best …
3
votes
3answers
72 views
Getting the contents of a library interactively in R
Is there an equivalent of dir function (python) in R?
When I load a library in R like -
library(vrtest)
I want to know all the functions that are in that library.
In Python, dir(vrtest) would …
5
votes
4answers
78 views
What is the best source for typo statistics?
I am looking for a reliable source that would provide some statistics on what keys are the most frequently mistyped.
For example: is "a" and "s" more commonly mistyped compared with "m" and "n"?
if …
0
votes
1answer
34 views
chisq.test doesn’t print results when in a loop
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):
Chi-squared test for given …
0
votes
2answers
33 views
How do I generate quasi-random statistical data sets?
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 …
1
vote
1answer
62 views
Error when generating pdf using script in R
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.
If I run …
1
vote
1answer
65 views
Statistical functionalities of F# (or .NET libraries)
Is it possible for a person working with statistic to replace his specialized programs by F#? I'm thinking about SAS/SPSS mainly?
Any native support for it in F#?
I am not talking about the …
0
votes
2answers
41 views
Can AdMob be used just for iPhone app statistics/analytics?
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 …
1
vote
6answers
117 views
Academic Studies Into Benefits of Team Work in Software Development
Hi All
I need to find some good statistics from reputable sources on the benefits of software developers working in a team.
We use Scrum - so anything linked to this in particular would be really …
0
votes
3answers
114 views
Nth Combination
Is there a direct way of getting the Nth combination of an ordered set of all combinations of nCr?
Example: I have four elements: [6, 4, 2, 1]. All the possible combinations by taking three at a time …
