Tagged Questions

12
votes
4answers
5k views

Which Git commit stats are easy to pull

Previously I have enjoyed TortoiseSvn's ability to generate simple commit stats for a given SVN repository. I wonder what is available in Git and am particularly interested in : Number of commits ...
3
votes
1answer
120 views

Statistic collection tool for C#?

Is there a good tool to collect statistics from within C# a application. Basically we want to save successful method calls, what parameter values were passed in, the IP addresses (for web ...
2
votes
2answers
188 views

chisq.test in R

Hi I am running chisq.test method and it gives me back the x-squared and the p-value, Now I want to take the p-value and according to the reading proceed with my program. How can i just get out the ...
2
votes
1answer
242 views

How do you find out release, mailing list statistics information on open source projects

We are interested in finding out some statistics of various frameworks Mailing list activity on say richfaces. Much similar to what is available on http://code.google.com (Low, Medium, High) + ...
2
votes
2answers
559 views

Creating a loop in R to apply the same functions to many similarly named variables

I am using a dataset w/variables that have very similar names. I have to apply the same functions to 13 variables at a time and I'm trying to shorten the code, instead of doing each variable ...
0
votes
1answer
355 views

using chisq.test in R (chi-squared tests)

I am trying to read a csv file and then creating 3 matrices out of each row from the csv file and then apply chi-squared test using the method chisq.test(matrix), but somehow this methods seems to ...