4
votes
2answers
88 views
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 …
2
votes
3answers
52 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
3answers
43 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
0answers
10 views
best way to gather statistics from web widget
I have a web widget, which is basically a JS file that people
can reference to in their website and it does something cool lets say.
currently I'm gathering statistics by doing an AJAX request to …
0
votes
1answer
22 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
56 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 …
0
votes
0answers
6 views
How to do a linear regression into a BIRT report ?
Hello,
How to make a linear regression on the chart displayed into your BIRT report.
I have x and y data... but I don't see any function on eclipse BIRT to generate the linear regression...
Any idea …
3
votes
1answer
18 views
Mathematica, PDF Curves and Shading
I need to plot a normal distribution and then shade some specific region of it. Right now I'm doing this by creating a plot of the distribution and overlaying it with a RegionPlot. This is pretty …
0
votes
1answer
30 views
How do you detect outliers on multivariate data?
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?
1
vote
1answer
58 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 …
1
vote
6answers
112 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
1answer
25 views
Is Linear Regression the same thing as Ordinary Least Squares Regression in SPSS ?
I want to do a linear regression but I want to use Ordinary Least Squares which I think it is a type of Linear regression.. The software I use is SPSS and it only has linear regression, partial least …
1
vote
3answers
63 views
Best stats library for C (not C++)
Anyone know of a good statistics library for C? I'm looking for something that is commonly used and not a small project. EDIT: must be free!
-1
votes
1answer
100 views
how do tell if its better to standardize your data matrix first when you do principal component analysis in R ?
Hi guys ,
Im trying to do principal component analysis in R . There is 2 ways of doing it , I believe.
One is doing principal component analysis right away the other way is standardizing the …
0
votes
3answers
109 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 …
