code-statistics

Get statistics on a C# WAP Project for client communication

I have a client that thought a highly dynamic ASP.NET application was a very simple sytem, yet to implement it in the manner in which they needed for future grown it has grown to well over 100 different code files. I am looking for a way, most likely with some sort of static code analysis tool to put some numbers that might "make sense"...

What free, low-overhead (statistical) profilers one can use under Linux?

Preferably from Ubuntu repositories. ...

How do I extract a specific function from a C/C++ source code file for subsequent processing

I am looking for an easy way to print out a specific function from within some C/C++ source code. For example, assume that test.c has several functions defined within it. I want to be able to print out the source code associated with only one of those functions. Edit: Sorry, I should be a bit more clear about my end goal. I want the fun...

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 per user Number of lines changed per user activity over time (for instance aggregated weekly changes) Any ideas? ...

LanguageR/ lme4: any help on p-values for models with random correlation parameters?

Hello R programmers! I used the package languageR for mixed effect models with the syntax at the end of this posting. I can use pvals.fnc to get p-values for model 1 and 3 (hd_lmer1 and hd_lmer2). Using this with model two gives the following error message: p2 = pvals.fnc(hd_lmer2) Error in pvals.fnc(hd_lmer2) : MCMC sampling...

Automation for Generating Reports

We are using Stata to combine and analyze data for all of our agencies in a district each month. I'd like to somehow create reports of the data analysis automatically for these monthly reports. The report includes a summary table of the reported indicators, a couple of graphics of the key indicators, and an analysis table showing stati...

Maven plugin for gathering source code statistics

Our project is based on J2EE and we would like to know if there is a open source maven-plugin which either integrates with cloc (Refer http://stackoverflow.com/questions/1353631/source-code-statistics) or other tools? ...

Need helping creating a loop in R. Have many similarly named variables I have to apply the same functions to. Thanks!

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 individually. q01a.F=factor(q01a) q01b.F=factor(q01b) q01c.F=factor(q01c) q01d.F=factor(q01d) q01e.F=factor(q01e) q01f.F=factor(q01f) q01g.F=factor...

Project summary - Source code lines

I'm looking for a tool that would count the number of files, the number of lines (with or without comments) and possibly other statistics for my project in PHP and JavaScript. Notes: I've already found SLOCCount which seems quite nice. It requires Cygwin. Yes, I can wrote a simple script for basic information but I'm looking for somet...

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) + average number of emails per day | per month. Number of releases made in a year including patch, minor, major releases. We did look at the mave...

Formula for all first and second order predictors including interactions in R

In the statistics programming language R, the following formula (as used in lm() or glm()) z ~ (x+y)^2 is equivalent to z ~ x + y + x:y Assuming, I only have continuous predictors, is there a concise way to obtain z ~ I(x^2) + I(y^2) + I(x) + I(y) + I(x*y) A formula that does the right thing for factor predictors is a plus. O...