Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
3answers
1k views

Conditionally colour data points outside of confidence bands in R

I need to colour datapoints that are outside of the the confidence bands on the plot below differently from those within the bands. Should I add a separate column to my dataset to record whether the ...
5
votes
4answers
3k views

Calculating confidence intervals for a non-normal distribution

First, I should specify that my knowledge of statistics is fairly limited, so please forgive me if my question seems trivial or perhaps doesn't even make sense. I have data that doesn't appear to be ...
1
vote
3answers
174 views

Two Factor ANOVA Errorbar plot in R

We're teaching a stats class for biology students and trying to use R as the computing and data visualization platform. As much as possible, we'd like to avoid using extra packages and doing anything ...
1
vote
2answers
246 views

Randomly subset data set multiple times and calculate means and variances

I never came to any conclusions re: this question, so I thought I would rephrase it and ask again. I would like to subsample my dataset 10,000 times to generate means and 95% CIs for each of my ...
1
vote
1answer
381 views

Gnuplot: linespoint with confidence interval

I've following data: I want to plot a graph shows for all x the mean connected with lines (linespoint) and also showing all the confidence interval [ci_lower, ci_upper]. I managed to do that using ...
1
vote
1answer
323 views

Python/matplotlib Show confidence levels in a histogram

here is my problem. I have some data I binned to obtain a "digitalised" pdf, and that's fine. Now, I wanted to find a way to indicate different confidence intervals by coloring the bin groups ...
1
vote
1answer
151 views

Changing parameters while using plotCI in R. (Shift points left or right)

I know that you can shift boxplots left or right on a graph by adding "at=1:6-0.2" or "at=1:6+0.2" to the code, but the same is not the case when I am using plotCI. Does anyone know how to perform ...
1
vote
3answers
788 views

confidence interval with leastsq fit in scipy python

How to calculate confidence interval for the least square fit (scipy.optimize.leastsq) in python?
1
vote
1answer
201 views

vcovHC and confidence interval

Is it possible to have confint use the robust vcov obtained by vcovHC (from the sandwich package) after fitting a model?
1
vote
2answers
487 views

How to compare different distribution means with reference truth value in Matlab?

I have production (q) values from 4 different methods stored in the 4 matrices. Each of the 4 matrices contains q values from a different method as: Matrix_1 = 1 row x 20 column Matrix_2 = 100 rows ...
1
vote
4answers
317 views

How to find a confidence interval for the total number of events

I have a program which records events that occur with some probability p. After I run it I get k events recorded. How can I calculate how many events there were, recorded or not, with some confidence, ...
1
vote
2answers
9k views

How do I plot confidence intervals in MATLAB?

I want to plot some confidence interval graphs in MATLAB but I don't have any idea at all how to do it. I have the data in a .xls file. Can someone give me a hint, or does anyone know commands for ...
0
votes
0answers
12 views

Confidence interval on the total variance

Consider a random effect one-way ANOVA model. How to construct a confidence interval on the total variance (between+within) ? I am interested in the mathematical foundation of this interval and I ...
0
votes
1answer
93 views

Calculate Confidence interval values and plot the curves accordingly

I have [x,y] pair of data that I am plotting. I am computing the best fit line for the curve using the least-square regression model and predicting the y-values accordingly. I now want to generate ...
-1
votes
1answer
285 views

'ttest' function error in Matlab - “??? Error using ==> nanmean. Too many input arguments.”

Following is the statement inside my code I am using in Matlab: [h_sgsim,p_sgsim,ci_sgsim] = ttest(q_mean_sgsim_yearly_TankMethod,q_mean_reference_truth_yearly_TankMethod(1)); where ...