Consider whether your question would be better at http://statistics.stackexchange.com. Statistics is the mathematical study of using probability to infer characteristics of a population from a limited number of samples or observations.
0
votes
1answer
65 views
Gretl - test alpha and beta
I have done an ordinary least squared with an excel data set. Now I want to test α against the value of 0 and β against the value of 1 using an error probability of 0.05%.
How to do this in gretl?
...
3
votes
2answers
115 views
How to NOT select observations from data in R
I am doing Bagging, and I figure out the code for selecting the learning set (training).
The data set has 683 observations.
# data set named cancer
learningset <- ...
0
votes
3answers
65 views
Default constructor c++ Random Number valid?
I'm new to c++ and I'm not that familiar with default constructors. I'm asked to write a class called Stats and in the default constructor write a constructor that uses the Random number generator to ...
0
votes
0answers
55 views
Two way ANOVA by ranks with unequal sample sizes
I'm trying to find a version of the F-test (2 way ANOVA by ranks) which deals with unequal sample sizes. Any thoughts?
I came across the Scheirer-Ray-Hare test, but there are lots of concern about ...
-2
votes
1answer
40 views
Wowza statistics - searching for CegaraWowStats [closed]
I'm looking for the cegaraWowStats code (it should be opensource). I was also trying to contact the author but with no luck. Does anyone know where can I find it?
0
votes
0answers
113 views
Correlation plot without Economics toolbox in Matlab
I need to write a script to plot correlation between two variables in a file, that looks like this:
color spatio
0.890832 0.832139
0.996072 0.990377
0.997679 0.993388
File contains ...
2
votes
3answers
116 views
Save xts object as csv file
I loaded a csv file using:
data = read.csv(file="/home/stefanos/R/data_frames_new/temp2.csv", header=TRUE, sep=",")
The first 4 lines of the temp2.csv file are:
...
1
vote
1answer
214 views
How to perform two-sample one-tailed t-test with numpy/scipy
In R, it is possible to perform two-sample one-tailed t-test simply by using
> A = c(0.19826790, 1.36836629, 1.37950911, 1.46951540, 1.48197798, 0.07532846)
> B = c(0.6383447, 0.5271385, ...
0
votes
0answers
49 views
TSQL Bitwise Operations: How do I find out common groupings of values?
Background: I am looking at consolidating security roles for an application. There are 20 roles that can apply to one or more of five access levels (like district, county, state). Most users have ...
1
vote
0answers
54 views
Predict likelihood of each failure type with competing risks model in R
I'm looking to run a competing risks model on historical data and predict the likelihood of each type of death in a new dataset for a specified period (let's say one period). So far I've looked into ...
-2
votes
3answers
110 views
Convert character vector to numeric vector in R for value assignment?
I have:
z = data.frame(x1=a, x2=b, x3=c, etc)
I am trying to do:
for (i in 1:10)
{
paste(c('N'),i,sep="") -> paste(c('z$x'),i,sep="")
}
Problems:
paste(c('z$x'),i,sep="") yields "z$x1", ...
0
votes
1answer
47 views
Graph with Gnuplot of statistic with different three different input data
I am plotting the frequency of the data sampling in an interval. The code is:
n=50 #number of intervals
plot "xxx.csv" u ($0):1 #To get the max and min value
max=GPVAL_Y_MAX
min=GPVAL_Y_MIN
...
0
votes
0answers
11 views
Table Generation in Finaquant Protos does not show impact when Speed is changed
I am generating a table with
Finaquant Protos Library
using the function
MatrixTable.CombinateFieldValues_B()
When I change the Random Speed parameter of the above function, I do not get a ...
1
vote
1answer
78 views
Is the bash function $RANDOM supposed to have an uniform distribution?
I understand that the bash function $RANDOM generates random integer number within a range, but, are these number supposed to follow (or approximate) an uniform discrete distribution?
1
vote
2answers
67 views
How do I define a Standard Deviation function in Pentaho Schema Workbench
I'm building an OLAP Analysis with Pentaho's BI Suite (Community Edition). Many of my measures are standard deviations of the variables in my fact tables.
Does someone has a tip on how to define a ...
0
votes
0answers
34 views
Pareto Dominance over Single objective optimization
Can someone explain me how Pareto dominance works for single objective optimization? (If it is applicable by any means)
2
votes
1answer
90 views
hierarchical clustering default behavior in R?
when you do the following clustering in R:
> d <- dist(as.matrix(mtcars))
> hc <- hclust(d)
> plot(hc)
you get a tree with nodes that have unequal branch lengths. in ordinary ...
-2
votes
1answer
79 views
Testing a dataset against a distribution with parameters estimated from that dataset [closed]
I am trying to figure out the best distribution to fit some data to, and I'm not sure if what I am doing is statistically correct. My data consists of 20 samples / year over 10 years. For each sample ...
0
votes
1answer
19 views
how to identyfy text and non-text from connected component(CC) feature value in excel file using normal distribution
fid=xlsread('text.xlsx');
[muhat,sigmahat] = normfit(fid)
x1 = xlsread('text.xlsx','A2:F2')
y1=max(normpdf(x1,muhat,sigmahat)
fid2=xlsread('nontext.xlsx');
[muhat2,sigmahat2] = normfit(fid2)
x2 ...
-1
votes
1answer
39 views
free tool to generation traffic on web page [closed]
I use Spring and Vaadin. I need to test my application to know how it'll be working after release. I'm looking for some free tool which can generate some fake traffic and if possible give me some ...
0
votes
1answer
70 views
A simple way to calculate outs on a poker game in java
I need to calculate the odds on a poker hand by Java. This is for a school project I don't have much time and I can't find any good and simple method or algorithm.
3
votes
0answers
174 views
Approximate the distribution of a sum of binomial random variables in R
My goal is approximate the distribution of a sum of binomial variables.
I use the following paper The Distribution of a Sum of Binomial Random Variables by Ken Butler and Michael Stephens.
I want to ...
0
votes
0answers
68 views
netstat -s statistics meaning [closed]
If I use netstat -s command to get TCP/UDP statistics for IPv4/IPv6. and I get some mesures like Active Opens, Failed connexions, Segments received. To use these statistics I want to know how these ...
0
votes
1answer
33 views
How can I set “999” as the DEFAULT missing value in SPSS/PASW?
I'm importing a very large dataset into SPSS. Many fields in the dataset contain a "999" value, indicating a missing value. I want to instruct SPSS to view them as such. However, default each variable ...
0
votes
1answer
34 views
Add an average column in array
I was collecting local temperature on a hourly basis in a data.frame with 3 columns and many rows (1000+) in R:
Day - Hour - Temperature
1 - 11:00 - 14
1 - 12:00 - 17
...
2 - 11:00 - 10
2 - 12:00 ...
1
vote
1answer
38 views
Create binary matrix from occurence data in R
I am trying to create a binary occurrence matrix for multiple individuals across a time series of survey occasions. The source data is a dataframe that contains an individual ID field and an occasion ...
2
votes
0answers
85 views
Query quirks with DB2, no-op coalesce halves the runtime
I'm working on optimizing some queries for a DB2 database. Most of them are running fine, but a few with rather large returned datasets (up to 30k rows or so) are giving me some trouble. There's ...
0
votes
2answers
64 views
confusion about mongodb capped collection
I am new to mongodb. Here is a code snippet:
MongoClient mongo = new MongoClient("localhost", 27017);
DB db = mongo.getDB("testdb");
DBCollection collection = db.getCollection("user");
for ...
-2
votes
1answer
1k views
Is there a free Stata trial available somewhere? [closed]
.
Hello, everyone!
Does anyone know a way to download a free trial of Stata? I've scoured their website (and tried Google), but everything I found required someone else's purchased DVD and, ...
4
votes
1answer
67 views
Javascript library for Pearson and/or Spearman correlations
Is there a Javascript library available for doing Spearman and/or Pearson correlations?
0
votes
1answer
46 views
test arima model
I am validating Arima models and I would like to know the critical value of my test to reject the null hypthesis depending on the p-value. If a want a confidence of 95%. which is my critical value.
...
0
votes
1answer
51 views
whats the difference between “ variances of frequency counts in grey levels ” and “variances of all pixel values”
i read some article about quality assessment and one of it's proposed techniques was to classify the image into three categories. "smooth" "texture" and "edge". the article told that we should ...
1
vote
2answers
35 views
Robustly choose a winner from sparse ratings? [closed]
I'm building a poll/rating system that reviews restaurants using a 5-star scheme, in which I occasionally need to choose "winners", based on ratings. Suppose I have the following scenario:
...
-5
votes
1answer
200 views
exponential random variable generation [closed]
First create a uniform random variable in the interval (0, 1). Then by using an appropriate function, create an exponential random variable. Then validate your results by ...
7
votes
0answers
156 views
Statistical performance of purely functional maps and sets
Given a data structure specification such as a purely functional map with known complexity bounds, one has to pick between several implementations. There is some folklore on how to pick the right one, ...
1
vote
1answer
39 views
Calculating quartiles of distributed data
Not entirely sure if this is an appropriate forum for this.
I have a small database cluster(4 boxes), each machine has a shard of the overall dataset.
I need to calculate quartiles for a specific ...
2
votes
1answer
80 views
Calculating Skewness and kurtosis with apache commons
I have datapoints in a vector and I would like to calculate the skewness and kurtosis of the dataset.
How do I go about this with apache commons?
Vector<Double> mydata = new ...
0
votes
2answers
56 views
Detecting 'top movers' over a period of time [closed]
Let's assume there's a monthly marathon.
We have an array for each of the last 6-months which contains the top 50 finishers, in order.
How can I detect the 'top movers'? In other words, I want to be ...
1
vote
2answers
47 views
for loop in R variable embedded in string name
I am new to R and am having trouble creating a for loop in which I can use the variable in a string name. For example:
lm1 <- lm(a~b+c)
lm2 <- lm(a~b+d)
lm3 <- lm(a~b+e)
for(i in 1:3){
...
0
votes
0answers
41 views
Testing recurrences and orders in strings matlab
I have observed nurses during 400 episodes of care and recorded the sequence of surfaces contacts in each.
I categorised the surfaces into 5 groups 1:5 and calculated the probability density ...
3
votes
1answer
87 views
Extracting t-statistic for coefficient of interst from “mlm” object in R
I've used lm() to fit multiple regression models, for multiple (~1 million) response variables in R. Eg.
allModels <- lm(t(responseVariablesMatrix)~modelMatrix)
This returns an object of class ...
1
vote
2answers
61 views
Google Cloud Storage: Where do I get per-bucket statistics
I would like to pull stats on a per bucket basis. Is this possible?
0
votes
1answer
118 views
Partial Least Square Regression using R
I'm new to R. I want to use the "pls" package to do Partial Least Square Analysis on my data.
The data information is design elements, whether exist or not, in 0 and 1 and the last column contains ...
0
votes
1answer
101 views
how can I plot a histogram using random.expovariate() PYTHON
I have a question where it shows customers entering a bar at a rate of 7 per hour, the question states i NEED to use random.expovariate() and generate a histogram showing 100 inter-arrival times.
So ...
0
votes
2answers
210 views
turning a uniform distribution into a normal distribution
how do i turn a uniform distribution to a normal distribution
I have Random samples of 2000 numbers between 0 and 1 and I did this for 10 columns
I got the average of all ten columns and put it on ...
0
votes
1answer
122 views
Create a rating system in java
I am trying to rate an list of numbers eg. [297, 720, 840, 903, 1110, 1170] on a scale of 1 to 10 with 10 being the lowest and 1 being the highest number.
So list.get(0) would be 9/10 or 10/10 and ...
1
vote
1answer
157 views
How can I perform a 2-way repeated measures anova using statsmodels?
I found this example, which explains how to perform a 2-way ANOVA. I was wondering how to do the same for a repeated-measures design.
I did see this question, but I cannot assume independence of my ...
1
vote
2answers
139 views
Per Process disk read/write statistics in Mac OS X
How do I get programatically per process disk i/o statistics in Mac OS X. In 'Activity Monitor' application or in 'top' command we can only get whole system disk i/o statistics.
For reference Similar ...
0
votes
3answers
77 views
SQL Server 2008 R2 table access times
Does SQL Server maintain statistics for each table on read, write, update times etc?
What we are wanting to know which tables our ERP applications spend the most time and begin looking for ways to ...
-1
votes
1answer
63 views
user page statistics [closed]
I have a site (PHP - CodeIgniter) where users create posts (they also have their own page...), I have to implement a statistics page and the users would only be able to see statistics for their posts.
...


