0
votes
1answer
38 views

The regression line don't pass through the cloud of points

The code is this one down here. altura <- read.table("altura.txt", header=T, quote="\"") altura <- cbind(altura, altura$Esposa/altura$X.Marido, altura$X.Marido/altura$Esposa) ...
1
vote
1answer
153 views

In R package “segmented”, How could I set the slope of one of lines in the model to 0?

I am using the R package segmented to calculate parameters for a model, in which the response variable is linearly correlated with the explanatory variable until a breakpoint, then the response ...
2
votes
1answer
181 views

add regresion line to plot (plotmeans)

My problem is that I would like to create plot with mean values and standard deviation. I found the function plotmeans in package gplots and now I would like to add trend line to that graph. I try to ...
1
vote
1answer
145 views

What does “NOTE: A regression through the origin is fitted!” mean?

I'm using the plottol function in the tolerance package of R and getting an error / warning after my plot is generated that say "NOTE: A regression through the origin is fitted!" I've googled it and ...
1
vote
3answers
200 views

Create function to automatically create plots from summary(fit <- lm( y ~ x1 + x2 +… xn))

I am running the same regression with small alterations of x variables several times. My aim is after having determined the fit and significance of each variable for this linear regression model to ...
3
votes
2answers
5k views

Linear regression in R (normal and logarithmic data)

I want to carry out a linear regression in R for data in a normal and in a double logarithmic plot. For normal data the dataset might be the follwing: lin <- data.frame(x = c(0:6), y = c(0.3, ...
1
vote
2answers
1k views

In R draw two lines, with slopes double and half the value of the best fit line

I have data with a best fit line draw. I need to draw two other lines. One needs to have double the slope and the other need to have half the slope. Later I will use the region to differentially ...
7
votes
3answers
2k 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 ...
10
votes
1answer
920 views

Graphing perpendicular offsets in a least squares regression plot in R

I'm interested in making a plot with a least squares regression line and line segments connecting the datapoints to the regression line as illustrated here in the graphic called perpendicular offsets: ...