Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
106 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 ...
3
votes
7answers
2k 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 ...
2
votes
2answers
61 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
0answers
38 views

upper limit of significance over time for whole set of data?

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 ...
1
vote
1answer
422 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 ...
1
vote
1answer
7k 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 ...
0
votes
3answers
49 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 ...
0
votes
0answers
33 views

How many times do I need to run my lengthy experiment to be able to defend the mean I get? [closed]

I have this long running experiment. Each time I run it I get a new goodness value, since the algorithm has random variables in it. So I need to report the mean and the std of some n runs. What should ...
0
votes
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. ...