1
vote
Suppressing “null device” output with R in batch mode
One of the nice things about R is that you can view the source of many functions:
> dev.off
function (which = dev.cur())
{
if (which == 1)
stop("cannot shut down de …
1
vote
In R, what is a good way to aggregate String data
Do you mean like this?
> myList <- c("Bob", "Mary", "Bob", "Bob", "Joe")
> r <- rle(sort(myList))
> result <- as.data.frame(cbind(r$values, r$lengths))
> names( …
0
votes
Deducing item cost from totals?
For the range in which a price must be, use a Linear Programming solver in your favorite numerical algebra system. You …
0
votes
Script to create a listing of: <Method Name> <Num of times called> for a particular project directory.
If "most frequently" means the actual number of calls in some run of the program, DTrace could be the tool you are looking for, assu …
0
votes
Java library to do time series analysis
Weka is a well-known machine learning library in Java, but it does not support time series too well. However, some people have adde …
1
vote
Estimating a probability given other probabilities from a prior
A really simple way of doing this without any difficult math is to increase buyCount and noBuyCount artificially by adding virtual customers that either bought or didn't buy the product. You can tu …
1
vote
1
vote
Inverted beta in MySQL
Look at the cephes library, specifically cprob.tgz. Be warned that the licensing situation of that code seems to be unclear. …
0
votes
Algorithm to Match Time Dependent (1D) Signals
Dynamic Time Warping is an approach you can use if the signals should be matched by speeding up and slowing down t …
0
votes
best way to statistically detect anomalies in data
This question is impossible to answer without knowing much more about the particular data you have. For an overview of what kinds of approaches exist, see …
1
vote
How can I compute the probability at a point given a normal distribution in Perl?
As others have pointed out, you probably want the cumulative distribution function. This can be obtained via the error functio …
0
votes
Workflow for statistical analysis and report writing
At a more "meta" level, you might be interested in the CRISP-DM process model.
…
0
votes
Clever way to estimate URL clicks per hour without logging every click ?
This may not be a practical solution, but since you asked for a "clever" way, here is some academic research on a …
0
votes
What statistics can be maintained for a set of numerical data without iterating?
It does sound (even after your 2nd edit) that you are describing on-line algorithms, with the additional requirement that you want to allow "delete" operations. An example of this are the "sketch a …
