The confidence-interval tag has no wiki summary.
1
vote
0answers
16 views
What is the confidence interval for quantile regression? And how to find other than default?
There is a way to construct the confidence interval for quantile regression:
x <- rnorm(1000)
y <- x + 2*rnorm(1000)
rqm1 <- rq(y~x)
summary(rqm1)
What is the default? Is it 5%? How to ...
0
votes
0answers
20 views
Tesseract Confidence level from one class
I am newbie in tesseract OCR.
I need your help please. I have tried to solve this problem for weeks.
I wanna get confidence level from one class that I want. Lets say I used an image contained an "A" ...
0
votes
1answer
163 views
Confidence interval for Weibull distribution
I have wind data that i'm using to perform extreme value analysis (calculate return levels). I'm using R with packages 'evd', 'extRemes' and 'ismev'.
I'm fitting GEV, Gumbel and Weibull ...
0
votes
0answers
74 views
Gathering the confidence with JAVACV program
Trying to figure out a way to gather the confidence level when it actually does the face recognizing on the target image. I have searched through a few examples but haven't found anything I can see ...
2
votes
1answer
80 views
Function parameter as argument in an R function
I am attempting to write a general function to calculate coverage probabilities for interval estimation of Binomial proportions in R. I intend to do this for a variety of confidence interval methods ...
-2
votes
1answer
160 views
cross-correlation using ccf in R [closed]
I wanted to use ccf in R to compute the cross-correlation on two sets of time-series data. My question is how can I know if any of the correlation coefficients in the plot falls outside the dash blue ...
0
votes
0answers
135 views
R poisson confidence intervals
I use poisson regression (glm() with family='poisson') and would like to give the answers in the form:
"Each predicted value has an error from the interval [low, high] with probability 0.95".
Is it ...
0
votes
1answer
76 views
How do I include errors for my data in the lmfit least squares miniimization, and what is this error for conf_interval2d function in lmfit?
I am new to python, and trying to use the lmfit package to check my own calculations, however I am unsure (1) as to how to include the errors for data (sig) for the following test (and 2) of an error ...
3
votes
1answer
2k views
How to calculate the 95% confidence interval for the slope in a linear regression model in R
Here is an exercise from Introductory Statistics with R:
With the rmr data set, plot metabolic rate versus body weight. Fit a linear regression model to the relation. According to the fitted model, ...
5
votes
5answers
392 views
Plot 95% confidence limits in scatterplot
I need to plot several data points that are defined as
c(x,y, stdev_x, stdev_y)
as a scatter plot with a representation of their 95% confidence limits, for examples showing the point and one ...
0
votes
0answers
217 views
How to draw a 95% confidence interval (area) for residuals on a normal probability Q-Q plot in SAS?
Under the 'CI area' I mean smth. like the one plotted on graphs in @cbeleites' answer or depicted in Ron Pearson's post.
Thank you.
1
vote
1answer
316 views
randomForest in R: Is there a possibility of calculating casewise confidence intervals?
R package randomForest reports mean squared errors for each tree in the forest. I need, however, a measure of confidence for each case in the data. Since randomForest calculates the casewise ...
1
vote
1answer
64 views
Finding confidence intervals in R with modFit (FME)
I've been using modFit (part of the R package, FME) on a recent project. I am interested in obtaining confidence intervals for the model predicted parameters, but I cannot figure out how to do so. ...
5
votes
1answer
996 views
Confidence intervals for predictions from logistic regression
In R predict.lm computes predictions based on the results from linear regression and also offers to compute confidence intervals for these predictions. According to the manual, these intervals are ...
7
votes
1answer
670 views
Extract prediction band from lme fit
I have following model
x<-rep(seq(0,100,by=1),10)
y<-15+2*rnorm(1010,10,4)*x+rnorm(1010,20,100)
id<-NULL
for (i in 1:10){
id<-c(id, rep(i,101))}
dtfr<-data.frame(x=x,y=y, id=id)
...
1
vote
1answer
80 views
R FactoMineR Package: level.conf option of the coord.ellipse function
I had a question answered earlier about drawing confidence ellipses for PCA (principal components analyses) plots.
What ended up working was the FactoMineR package (a combination of the PCA, ...
0
votes
0answers
73 views
Confidence interval for Fleiss kappa
I am using kappam.fleiss from the irr package to calculate Fleiss' kappa. I also need a confidence interval. Is there a best way to do that? I planned to use boot.ci but boot seems to require that ...
0
votes
2answers
35 views
Bayesian interval of 5 fitted values
I conducted a Bayesian analysis by running Winbugs from R and derived the fitted values and their Bayesian intervals. Here is the related Winbugs output where mu[i] is the i-th fitted value.
node ...
0
votes
0answers
67 views
is sample size function of population size?
I want to test the accuracy of my population claiming that accuracy level is 95%, i.e null H: p=.95 with confidence of 95% and margin of error of 2%. The formula for determining sample size shows it ...
0
votes
2answers
168 views
Bar chart with confidence interval in web application
I am looking for a javascript library capable of drawing a bar chart with confidence interval.
The output should look like here:
horizontal bars
line markers, indicating the lower and upper ...
0
votes
0answers
55 views
How to find a bootstrap t confidence interval in R [duplicate]
Possible Duplicate:
Bootstrap Confidence Intervals in R
I have to construct a 95% bootstrap t confidence interval of the estimator theta=y.bar+1.645s where y.bar is the mean and s is the ...
0
votes
1answer
120 views
Creating repeated predictions with a single model with distinct data frames on R
I hope someone can help me.
I would like to perform several predictions with one model with distinct data.
I've created 100 data frames with 60 observations sorted from another data frame as below:
...
0
votes
0answers
41 views
R: is there a way to get the confidence/prediction interval around a predicted value [duplicate]
Possible Duplicate:
Get Confidence Interval For One Point On Regression Line In R?
I have created a linear model in R, using a data frame, to predict the next outcome of my variable given ...
3
votes
1answer
239 views
How to reproduce a confidence interval graph?
I need to reproduce a graph similar to the attached image. I hope to use the graphic to compare confidence intervals of the difference between proportions. How can I produce the attached graphic ...
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
1answer
212 views
Adding error bars to an existing plot using values from a column
I am having problems trying to add the 95% CI (lower/upper) to an existing plot using the values from two columns in a matrix. What would be the best way to use this information to add the error bars? ...
2
votes
1answer
249 views
Interaction plot with confidence intervals
I want to draw an interaction plot with confidence intervals for an assignement that is due tomorrow. This is my dataset:
Snail0
water lightness total_migration
control dark 9.5
...
2
votes
1answer
421 views
Calculate & plot bootstrapped confidence intervals of each generation in a simulation
I am running a simple genetic drift simulation in R.
# Population size
N<-5000
# Number with focal allele
X1<-(N/2)
# Number of generations
ngens<-(2000)
# Number of replicates
nreps<-10
...
0
votes
0answers
111 views
R lme loop woes with “try” and lme confidence intervals
R users, I've still been hashing out bits and pieces related to my initial question as seen here and now I'm quite stuck.
...
0
votes
0answers
256 views
Plotting confidence intervals of a ROC curve in pROC
I am using pROC package in R cran 2.15 to plot a roc curve with confidence intervals :
NN_ROC = roc(crs$dataset[crs$test, crs$target] ~ crs$pr, smooth=TRUE, percent=TRUE,
# arguments for ci
...
1
vote
1answer
124 views
prediction intervals with caret
I've been using the caret package in R to run some boosted regression tree and random forest models and am hoping to generate prediction intervals for a set of new cases using the inbuilt ...
2
votes
1answer
345 views
R PCA plot using Hotelling's T2 for a confidence interval
For my test data, I calculated the first two principal components using the prcomp function. I then plotted the first 2 components using the plot function.
df <- data.frame(x1 = runif(10), x2 = ...
3
votes
2answers
1k views
Highcharts - Area between two y values highlighted
I have a situation where I need to predict a trend in a time series, and I have to display confidence intervals. Is there a way to plot two sets of y-values in Highcharts as linked, and shade the ...
3
votes
1answer
191 views
profile confidence intervals in R: mle2
I am trying to use the command mle2, in the package bbmle. I am looking at p2 of "Maximum likelihood estimation and analysis with the bbmle package" by Bolker. Somehow I fail to enter the right start ...
2
votes
1answer
1k views
Generating multiple confidence intervals from samples of a normal distribution in R
I am an statistics student and R beginner (understatement of the year) trying to generate multiple confidence intervals for randomly generated samples of a normal distribution as part of an ...
0
votes
1answer
324 views
Hyperellipsoid confidence region
The R function ellipse() (package: ellipse) allows to generate the coordinates of confidence regions for two parameters. Does anyone know how to generate the coordinates of hyperellipsoid confidence ...
0
votes
1answer
317 views
Pointrange plot with boxplot type grouping
I have data that could be plotted with a box plot, but n for each box is only 3. I would like to plot them using a pointrange type of plot in ggplot2. By default, they come on top of each other. How ...
2
votes
1answer
657 views
How to get confidence intervals by bootstrapping for quantile regressions by default
In my statistics class we use Stata and since I'm an R user I want to do the same things in R. I've gotten the right results but it seems like a somewhat awkward way of getting something as simple as ...
0
votes
1answer
473 views
average and confidence interval with gnuplot
I have a raw data like this:
x1 val1
x1 val2
x1 val3
x1 val4
x2 val5
x2 val6
x2 val7
x3 val8
...
And I want to make a line plot with x1,x2,...xn as X value ...
0
votes
2answers
307 views
Check interval contains number in R
In R I have the following matrix (each row represents a bootstrap 95% confidence interval generated from the same sample data):
low high
[1,] 22.2 25.5
[2,] 23.1 25.9
[3,] 23.4 26.1
...
1
vote
1answer
111 views
Calculating AB Test Results
I have a web page where users are shown a set of products and they express interest in the products that they like by selecting them.
I am running an AB experiment to test two versions of this page, ...
2
votes
1answer
455 views
r / sciplot: overlapping whiskers in lineplot.CI
When making an interaction plot using lineplot.CI in the sciplot library, error bars can overlap across groups. For example,
data = c(1,5,3,7,3,7,5,9)
grp1 = c(1,1,1,1,2,2,2,2)
grp2 = ...
4
votes
1answer
464 views
xyplot with confidence interval (box and wisker plot) added in r
I want to add 99% and 95% confidence interval in XYplot.
The following is data:
X <- 1:20
Y <- c(0.5, 1.4, 2.3, 3.4, 4.5,
3.3, 3.0, 2.1, 1.5, 0,
0, 3.4, 4.5, 6.7, 5.3, 2.8,
...
3
votes
1answer
1k views
Bootstrap Confidence Intervals in R
I am a new R user, and am having trouble using the boot package. All I want to do is use bootstrapping to produce confidence intervals around a mean for a vector of numbers, such as:
x <- ...
3
votes
1answer
1k views
Adding confidence intervals to plot from simulation data in R
I've created a probit simulation based on a likelihood function and simulation, all of which can be replicated with the code below.
This is the likelihood function:
probit.ll <- ...
1
vote
0answers
119 views
Confidence interval on the total variance [closed]
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 ...
1
vote
3answers
2k 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 ...
0
votes
1answer
472 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
vote
2answers
780 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
2k 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 ...

