Tagged Questions
0
votes
2answers
63 views
Perl fast matrix multiply
I have implemented the following statistical computation in perl http://en.wikipedia.org/wiki/Fisher_information.
The results are correct. I know this because I have 100's of test cases that match ...
0
votes
3answers
68 views
re-scaling the values between given maximum and minimum, where max is positive and min is negative
I want the re-scale an array of values (both positive and negative floating point values), so that the values lies between say -5 to +5 or say -3 to +2. How can I scale it down. Is there any specific ...
0
votes
4answers
82 views
Is possible use a foreach loop of Perl to process different files with R?
im tried to process different files like an input to R script, for this I use a foreach loop in Perl, but R send me a warning:
Problem while running this R command:
a <- ...
0
votes
1answer
139 views
Interpreting the Jaro-Winkler Score in Perl — Are there Alternatives in Stata?
Is there an industry standard for how large the Jaro-Winkler score should be to say that the two strings are likely similar?
I have a list of strings and I want to see if any of them are plausible ...
0
votes
1answer
70 views
How can I debug a lack of IO counts printed in Perl DBI's db_error_handler from a Sybase query?
I'm having a fairly strange problem.
It's a bit of an X-Y problem, so I will first describe "X".
Question X: How can I debug DBI internals using Perl?
More specifically, the calls to DBI's ...
0
votes
2answers
112 views
How do I split ONE array to two separate arrays based on magnitude size and a threshold?
I have an array which has BIG numbers and small numbers in it. I got it from after running a log from WireShark.
This is how the Array look like (for bytes send) :
@Array=qw(10912980
10924534
...
0
votes
5answers
186 views
Binning the data
I have a dataset which looks like this
-9030 KIR3DX1
-75 SLC12A6
8005 C14orf79
-251 ARAP1
65994 EFNB1
-12111 SLC7A5
-11643 CAMK2G
-19749 PRPS2
-23324 MIR198
10012 LOC100506172
-77 ...
2
votes
1answer
196 views
Strange collision when calculating p-values in Perl using Statistics::TTest
I have a mysterious problem that I can't figure out.
I am using Statistics::TTest to calculate p-values for several thousand pairs of distributions of numbers.
I'm using these p-values to create a ...
2
votes
3answers
294 views
calculate average of small parts of column, grouped by key in perl?
This question is quite similar to this one How can I get the average and standard deviations grouped by key? but I don't manage to modify it to fit my problem.
I have a lot of files (.csv) with 7 ...
1
vote
3answers
346 views
fast perl t-test function
I'm using perl+R to analyze a large dataset of samples. For each two samples, I calculate the t-test p-value. Currently, I'm using the statistics::R module to export values from perl to R, and then ...
0
votes
1answer
106 views
Where can I find a Perl module that calculates a p-value given an f-value and degrees of freedom?
I am looking for a Perl package to calculate a p-value given an f-value and numerator and denominator (degrees of freedom).
I need something exactly like what is calculated in the following link:
...
0
votes
1answer
227 views
calculating multivariate regression using Statistics::Regression
I'd like to use the Perl module of Statistics::Regression for calculating multivariate regression:
Statistics::Regression
and for that I was hoping to find an example code that uses this package for ...
0
votes
1answer
357 views
Perl packages for statistics - multiple regression
I am new to perl and looking for a package that includes a code to calculate multiple regression.
Something like OLS that is presented here:
wikipedia - estimation methods for multiple regression
...
-2
votes
2answers
144 views
Can I transform this Perl Script to make it read from a file?
I want to get the median of a specific column of data using a Perl Script,I got a script that reads, values from an array within the script,.
my (@vals, $med);
@vals =(12, 23, 34, 21, 66,66, 34, 87);
...
0
votes
3answers
273 views
How can I write a Perl script that reads from another file?
I want to write a Perl Script that reads a file.txt with columns of numbers,
20 30 12
31 20 54
63 30 21
11 12 10
and do some calculations, for example the mean. I don't know how to declare ...
0
votes
2answers
292 views
Statistics in Perl Script
I have the following question:
I want to create a perl script that reads from a text file (file with several columns of numbers) and calculate some statistics (mean, median, sd, variance). I already ...
0
votes
1answer
150 views
Statistics::Regression cannot run univariate regression?
I'm using the Perl module of Statistics::Regression. It runs multi-variate regressions fine. However, if I only supply one regressor in the constructor
my $reg = ...
0
votes
1answer
359 views
Learning R and Perl
Can anybody help me with any good tutorial on Statistics::R module please? In the process of learning R perl, I used some code from web, but it is not working? This was an example where correlation ...
2
votes
2answers
172 views
My Perl program Stas
I need your help to implement something to monitor CPU/MEM usage during or at the end of the execution of a perl program.
Imagine that a program that runs every N minutes which is launched by another ...
1
vote
2answers
112 views
How do I filter a vector according to array in Statistics::Basic::ComputedVector?
I want to use a Statistics::Basic::ComputedVector set_filter, but the filter I want to use is an array of 1's and 0's. Is this possible?
Here's what I want to do:
my $v1 = vector(1,2,3,4,5);
my ...
5
votes
3answers
9k views
Using perl to find median, mode, Standard deviation?
I have an array of numbers. What is the easiest way to calculate the Median, Mode, and Std Dev for the data set?
3
votes
1answer
442 views
Perl Statistics::Descriptive and a trimmed standard deviation
The Statistics::Descriptive module provides the Full class that allows you to compute a trimmed mean. Is there a way to get a trimmed standard deviation out of it? It's already sorting the data to ...
2
votes
1answer
164 views
How to implement long-term statistics and short-time log?
We develop a larger database web application with Perl Catalyst and PostgreSQL under Linux. Users can login and upload and download data files (scientific measurements).
I wonder how to implement a ...
3
votes
3answers
273 views
How can I efficiently model the sum of Bernoullli random variables?
I am using Perl to model a random variable (Y) which is the sum of some ~15-40k independent Bernoulli random variables (X_i), each with a different success probability (p_i). Formally, Y=Sum{X_i} ...
2
votes
2answers
377 views
Is there a CPAN module for creating the CDF for a given list?
It's not too difficult to implement, but it seems like Cumulative distribution function is a very basic Statistics::Descriptive function, doesn't it?
It seems Statistics::Descriptive::Weighted has ...
3
votes
1answer
404 views
Does Statistics::Descriptive percentile method work as documented?
use strict;
use warnings;
use Statistics::Descriptive;
use 5.012;
my @data = ( -2, 7, 7, 4, 18, -5 );
my $stat = Statistics::Descriptive::Full->new();
$stat->add_data(@data);
say ...
4
votes
3answers
392 views
How can I find low regions in a graph using Perl/R?
I'm examining some biological data which is basically a long list (a few million values) of integers, each saying how well this position in the genome is covered. Here is a graphical example for a ...
8
votes
1answer
667 views
Is there any current review of statistical modules for Perl?
I would like to know which is the current status of the statistical modules in CPAN, does any one know any recent review or could comment about its likes/dislikes with those modules?
I have used the ...
2
votes
2answers
299 views
Probabilistic selection from a set
Suppose I want to randomly select a number n between 0 and 30, where the distribution is arbitrary, and not uniform. Each number has a corresponding weight P(n): P(0) = 5, P(1) = 1, P(2) = 30, P(3) = ...
4
votes
2answers
125 views
How can i count the respective lines for each sub in my perl code?
I am refactoring a rather large body of code and a sort of esoteric question came to me while pondering where to go on with this. What this code needs in large parts is shortening of subs.
As such it ...
0
votes
1answer
268 views
How many random strings does this code generate?
I am considering this random string generator in perl:
sub generate_random_string {
my $length = 12;
my @chars = qw/2 3 4 5 6 7 8 9 A B C D E F G H J K M N P Q R S T U V W X Y Z/;
my $str ...
2
votes
1answer
697 views
How to convert a z score to a percentage in Perl
Seems like in Perl this should be easy or a module, but I have not found an easy answer yet. I have a calculated z normal score and the mean, but have not found an easy method to calculate the ...
3
votes
4answers
333 views
How can I get the decreasing cumulative of frequency series using Perl?
I have a data that looks like this:
3
2
1
5
What I want to get is the "decreasing" cumulative of this data
yielding
11
8
6
5
0
What is the compact way of doing that in Perl?
1
vote
1answer
583 views
Preparing data for a CDF Plot using Statistics::Descriptive module?
Does anyone know how to prepare data to plot a CDF (I have a bunch of floating point numbers)? I was planning on using gnuplot and on first look, the Statistics::Descriptive module seemed the best fit ...
1
vote
1answer
71 views
Does anyone here use the make-cdf & stats.pl program?
I came across this page: Plotting Tools
where I found a set of tools with the name stats.pl and make-cdf. I can write my own but don't want to spend too much time when someone else has already done ...
6
votes
2answers
127 views
What is a good pure Perl on-line or streaming statistics package?
Are there any prerolled streaming statistics libraries for Perl à la: http://en.wikipedia.org/wiki/Algorithms%5Ffor%5Fcalculating%5Fvariance#On-line%5Falgorithm
I haven't found anything on CPAN yet ...
8
votes
4answers
3k views
How can I calculate the median and standard deviation of a bunch stream of numbers in Perl?
In our logfiles we store response times for the requests. What's the most efficient way to calculate the median response time, the "75/90/95% of requests were served in less than N time" numbers etc? ...
2
votes
7answers
999 views
How can I get the average and standard deviations grouped by key?
I've need to find the average and standard deviation of a large amount of data in this format. I tried using Excel but there doesn't appear to be an easy way to transpose the columns. What am I ...
8
votes
6answers
2k views
Is there a Perl statistics package that doesn't make me load the entire dataset at once?
I'm looking for a statistics package for Perl (CPAN is fine) that allows me to add data incrementally instead of having to pass in an entire array of data.
Just the mean, median, stddev, max, and min ...
2
votes
6answers
2k views
How can I compute the probability at a point given a normal distribution in Perl?
Is there a package in Perl that allows you to compute the height of probability distribution at each given point. For example this can be done in R this way:
> dnorm(0, mean=4,sd=10)
> ...
31
votes
10answers
39k views
How to efficiently calculate a running standard deviation?
I have an array of lists of numbers, e.g.:
[0] (0.01, 0.01, 0.02, 0.04, 0.03)
[1] (0.00, 0.02, 0.02, 0.03, 0.02)
[2] (0.01, 0.02, 0.02, 0.03, 0.02)
...
[n] (0.01, 0.00, 0.01, 0.05, 0.03)
What ...
2
votes
3answers
356 views
How can I work around a round-off error that causes an infinite loop in Perl's Statistics::Descriptive?
I'm using the Statistics::Descriptive library in Perl to calculate frequency distributions and coming up against a floating point rounding error problem.
I pass in two values, 0.205 and 0.205, (taken ...
2
votes
3answers
1k views
How do I get t-statistics and p-values of correlations in Perl?
I'm trying to calculate correlations in Perl. I found out how to calculate correlations between arrays in CPAN, but I can't seem to find out how to get the t-statistics and p-values of those ...
3
votes
4answers
17k views
How do I calculate a p-value if I have the t-statistic and d.f. (in Perl)?
I have written a Perl script that performs many one-sample t-tests. I get thousands of t-statistics with their degrees of freedom (df). I need to upgrade the script to also return their p-values ...
