The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
17 views

mattest function in matlab gives p values greater than 1 [closed]

I am doing microarray analysis using MATLAB and I am getting the significant genes by using the mattest function. My code is as follows: pvalues = mattest(cond, control, 'permute', 500); where ...
0
votes
0answers
26 views

Results from TukeyHSD in R

I found one similar question here but i think my problem is if i interpret my data right. I do my simple anova and found that in my data i have an significant different (p.value < 0.05: ...
-1
votes
0answers
44 views

correlation coefficient homogeneity R [closed]

I was looking for some help assessing some correlation coefficients (c) in R that were originally produced with different sample sizes. I'm trying to see if they differ significantly. My data is as ...
0
votes
0answers
9 views

Hypothesis Testing for 270 instances with only one reference run?

I have a test suit for an optimization problem with 270 problem instances. For all these instances I have a lower bound and a single solution of another algorithm I want to compare with. I do not own ...
7
votes
2answers
256 views

Barplot with significant differences and interactions?

I would like to visualize my data and ANOVA statistics. It is common to do this using a barplot with added lines indicating significant differences and interactions. How do you make plot like this ...
0
votes
0answers
128 views

Interpreting Results of InfoGain Attribute Evaluator in WEKA

I have run the InfoGain+Ranker algorithms in the Feature selection tab of the Weka in order to determine the significance of each individual variable that contributed to classification results. This ...
0
votes
1answer
67 views

Determine importance of individual variables in WEKA

I am trying to determine the importance of individual variables in the WEKA implementation of an LMT(Logistic Model Trees) DT (Decision Tree). I would like to know the contribution that each ...
0
votes
1answer
173 views

MATLAB student-t test from boxplot input

In Matlab I created some boxplots of data. Now, I would like to do a statistical analysis with a Student-T test, to see if the difference is significant. Some data is paired, others not, with ...
0
votes
0answers
133 views

Calculating Standard Deviation of a Bernoulli Trial

I was hoping that someone might be able to help me out with some slight confusion regarding calculation of the standard deviation for a Bernoulli Trial. Definitionally, I understand a Bernoulli Trial ...
0
votes
1answer
76 views

Significant Difference in r [closed]

So here's my problem: I have a bunch of data about sound production and where the emphasis falls in a word. What I'm trying to do is determine if the difference between production on stressed and ...
0
votes
0answers
125 views

WEKA SMOreg classifier significance testing

I am using the SMOreg classifier in WEKA to determine if there is a predictive relationship between one variable and several other variables. I am using 10-fold cross-validation to get my results. ...
0
votes
2answers
57 views

Significance/Need of setting the properties to nil in viewDidUnload

What is the significance of setting the properties to nil in viewDidUnload in both the aspects i.e. with ARC or without ARC? Does it only matter in case of IBOulets? Don't we need to set the other ...
9
votes
1answer
2k views

Significance level added to matrix correlation heatmap using ggplot2

I wonder how one can add another layer of important and needed complexity to a matrix correlation heatmap like for example the p value after the manner of the significance level stars in addition to ...
1
vote
1answer
203 views

Statistical Significance in PHP [closed]

I am looking for a PHP function that will compute the statistical significance of some AB split testing results. I want to give it 2 pairs of results and find out the likelihood that the long term ...
1
vote
1answer
488 views

How to make specific pairwise comparisons in R

I have some code that I have inherited that generates a matrix of significance levels for pairwise comparisons from predicted means. Since the model includes data from multiple sites and treatments, ...
1
vote
1answer
330 views

“Correlation & Significance if more than 30 pairs” using R and ddply

Part of the solution to my problem I found here: How to calculate correlation In R set.seed(123) X <- data.frame(ID = rep(1:2, each=5), a = sample(1:10), b = sample(1:10)) ddply(X, .(ID), ...
4
votes
2answers
2k views

How do I add an asterix to a boxplot to represent significance?

I am trying to include an asterix on top or bottom of a box in boxplot graph that represent significance after performing the independent variable t-test evaluation. How can I add this to my graph?
2
votes
1answer
537 views

How to detect if change in time series data is no longer significant?

I have a set of news articles for which there are stats, eg.: number of twitter posts mentioning the article for range of days. Natural behavior of stats values is that the number of new posts grows ...
2
votes
2answers
2k views

File system block size

What is the significance of the file system block size? If my fs block size is set at say 8K does that mean that all read/write I/O will happen at size 8K? So if my application wants to read say 16 ...
3
votes
2answers
978 views

Significance testing in R, determining if the proportion in one column is significantly different from the other column within the single variable

I'm sure this is an easy command in R, but for some reason, I'm having trouble finding a solution. I'm trying to run a bunch of crosstabs (using the table() command) in R, and each tab has two ...
2
votes
2answers
181 views

What is the significance of '-client' for JAVA_OPTS

I am not an expert on JAVA_OPTS, but I am getting an error in my grails app related to Permgen space. Now I receive a recommendation from grails blog to set JAVA_OPTS to this value: ...
1
vote
1answer
1k views

ANOVA over time in Python, what am I doing?

I really like statistics, but haven't taken a course in over 6 years. I'm having trouble figuring out what kind of test I need here, and the best numpy/scipy/R function to use for these kinds of ...
0
votes
2answers
126 views

Comparing text frequencies in a document to frequency in a corpus

I want to analyse a document for items such as letters, bigrams, words, etc and compare how frequent they are in my document to how frequent they were over a large corpus of documents. The idea is ...
1
vote
1answer
13k views

Compute statistical significance with Excel

I have 2 columns and multiple rows of data in excel. Each column represents an algorithm and the values in rows are the results of these algorithms with different parameters. I want to make ...
1
vote
6answers
1k views

Using Taylor Series to Avoid Loss of Precision

I'm trying to use Taylor series to develop a numerically sound algorithm for solving a function. I've been at it for quite a while, but haven't had any luck yet. I'm not sure what I'm doing wrong. ...
9
votes
5answers
2k views

C# Finding relevant document snippets for search result display

In developing search for a site I am building, I decided to go the cheap and quick way and use Microsoft Sql Server's Full Text Search engine instead of something more robust like Lucene.Net. One of ...
3
votes
7answers
4k views

Significant figures in the decimal module

So I've decided to try to solve my physics homework by writing some python scripts to solve problems for me. One problem that I'm running into is that significant figures don't always seem to come ...