1
vote
1answer
28 views

R- Polynomial Linear model coefficients not fit predicted values of model

I am trying to fit some models to some data and the resulting model predicts sensible values and the plots seem correct. But when extracting the coefficients and plotting the functions separately, ...
3
votes
1answer
54 views

order of coefficients in lm, R

When running a regression in R, what is the order for the returned coefficients? For example: coef(lm(y ~ x + z, data=data.frame(x=1:10, y=10:1, z=1:5))) Is it guaranteed that the coefficient ...
0
votes
1answer
36 views

Linear regression on multiple rows in matrix in R

Just sitting with my bachelors thesis, and using R, to run linear regressions on some financial data. My problem: I have a large matrix of data, that I have split up into rows, because I want to run ...
-1
votes
1answer
65 views

What does this summary data mean? [closed]

I am using sample algae data to understand data mining a bit more, i have used the following commands: > data(algae) > algae <- algae[-manyNAs(algae),] > clean.algae ...
0
votes
2answers
32 views

Having weights shown as an unused argument in logistf R function

I kept getting a problem for the following code; "weights=weight" was shown as an unused argument. How should I solve the problem? x_0 <- rbinom(1,100, 0.01) x_1 <- rbinom(1,100, 0.1) x ...
0
votes
0answers
56 views

Regressing a quantitative variable from several compatible qualitative variables

This is my first question on stackoverflow and I hope I'll do things properly. I am studying the impact of movie genres on box-office. My endogenous variable is boxoffice, continuous and ...
0
votes
1answer
47 views

julian dates as.date

I am trying to run a simple regression in R (mac OSX), to see if the level of an environmental certification has improved over time - among other things. The data I downloaded offers a level from ...
0
votes
0answers
50 views

Interval regression with R

I need to perform a multiple regression analysis of response data that is expressed as an interval (a lower bound and an upper bound), that I assume is log-normally distributed, on a number of ...
-5
votes
1answer
80 views

R , linear regression [closed]

I have this matrix in R, I want to find linear regression equation and plot it. Help me please! Periudhat Totali.i.kredisë 1 Jan_2000 20306 2 Shk_00 20547 3 Mar_00 ...
2
votes
2answers
110 views

R: plm — year fixed effects — year and quarter data

I am having a problem setting up a panel data model. Here is some sample data: library(plm) id <- c(1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2) year <- ...
0
votes
2answers
72 views

How to perform least squares regression in R given training and testing data with class labels?

I have a 63*62 training set and the class labels are also present. The test data is a 25*62 dimensions and has the class labels too. Given this how would I perform least squares regression? I am using ...
2
votes
1answer
46 views

Why does R behave strangely with the lm.predict function, in the following code?

I have a problem with the code below, which I'm trying to understand: x = rnorm(50) y = 3 * x +rnorm(50) df_eq <- data.frame(x, y) model1 <- lm(y ~ x - 1) model2 <- lm(df_eq[,2] ~ ...
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) ...
0
votes
0answers
44 views

Contour plot of back transformed data

I've fitted a linear model to my log10 transformed data with the rsm function of the DoE.wrapper library in R. Now I simply want to obtain some contour plot of my model but with data back-transformed ...
0
votes
1answer
79 views

How to use linear models to obtain coefficients by factors levels?

I'm analyzing data from a solar power plant. I wanted to adjust the estimated production plant Hourly each subsequent day, the data that can be obtained are the weather forecasts of the next three ...
-6
votes
1answer
99 views

In SPSS, how do I do a bunch of regression analyses by looping through independent variables by their label variables? Is it easier in R? [duplicate]

Here's an example of my dataset in comma-delimited form (with variable names in the top row)... LABEL,X,Y bimmy,1,2 bimmy,2,4 bimmy,3,6 jimmy,2,8 jimmy,5,4 jimmy,6,10 marian,3,10 marian,4,9 ...
2
votes
1answer
162 views

How to efficiently extrapolate missing data for multiple variables

I have panel data and numerous variables are missing observations before certain years. The years vary across variables. What is an efficient way to extrapolate for missing data points across multiple ...
1
vote
1answer
61 views

Interpolate new values using a set of samples

I'm new to R. Having a set of samples along with the target, I want to fit a numeric function to solve the target of new samples. My sample is time in seconds indicating the duration of a user's ...
2
votes
2answers
150 views

Implementation of logistic regression formula in R

I am trying to build my own logistic regression function using stochastic gradient descent in R, but what I have right now makes the weights grow without bound and therefore never halts: # Logistic ...
0
votes
2answers
49 views

Qualitative predictor variables not appearing in regression summary output R

I have a big dataset where I use to run linear regression models with some qualitative predictor variables. I call the dataset WN and the qualitative variables are OState and DState (States in US). ...
0
votes
0answers
91 views

Understanding and plotting prediction bands with logarithmic scale y-axis in R

I am doing some scatter plots from rather large data sets and want to plot fitted lines and prediction bands. The y-axis should be log10 scale and outliers has not been removed yet. I am having great ...
0
votes
1answer
165 views

How to get the standard error of the restricted least square regression in R

I am estimating a restricted linear regression model lm(TC~Q+PL+PK+PF) under the linear restriction the coefficients of PL+PK+PF sum to one. I want both the regression coefficients and standard ...
1
vote
2answers
52 views

linearRegression coef results per line with R

Assume I use the following data data(iris) iris And make the following regression: linearReg <- lm(Sepal.Length ~ Petal.Length+Petal.Width, data=iris) linearReg$coefficients (Intercept) ...
0
votes
1answer
111 views

Why does regression in R delete index 1 of a factor variable? [duplicate]

I am trying to do a regression in R using the lm and the glm function. My dependent variable is logit transformed data based on proportion of events over non-events within a given time period. So my ...
0
votes
0answers
44 views

R BAS package, error no positive roots

I'm learning R and generalized linear models, I found BAS which I think is simple to use to get one, but running it I got this mistake and as I said just begining to learn. Any help: No positive ...
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, ...
1
vote
1answer
49 views

Expansion Regression models In R

I am doing a regression with several categorial variables and continuous variables mixed together. For simplify my question, I want to create a regression model that predicts the driving time given a ...
8
votes
3answers
287 views

How to put a complicated equation into a R formula?

We have the diameter of trees as the predictor and tree height as the dependent variable. A number of different equations exist for this kind of data and we try to model some of them and compare the ...
0
votes
2answers
189 views

comparing two linear models in R

Let's say I have two linear models in R such that: lm1 = (x ~ a + b) lm2 = (x ~ a + b + c) I want to determine the effect of c on x in terms of 1) significance of effect 2) estimate of effect 3) ...
3
votes
2answers
148 views

Plotting a single line with two different colours with ggplot2

I'm trying to plot a set of data with ggplot2. The data are in two categories. I would like to plot them together, with a single linear regression line. However, I would like to have each of the two ...
1
vote
1answer
168 views

Can ggplot show regressions of y on x and x on y simultaneously?

I have a bivariate data set: set.seed(45) require(mvtnorm) sigma <- matrix(c(3,2,2,3), ncol=2) df <- as.data.frame(rmvnorm(100, sigma=sigma)) names(df) <- c("u", "v") Setting up v as the ...
1
vote
1answer
107 views

how to use predict()

Want to predict a value but this is clearly not the solution. I am doing a multiple choice test and 0.304... is not an answer.How to use predict() correctly? library(glm2) data(crabs) fit= ...
0
votes
1answer
512 views

R Variable Length Differ when build linear model for residuals

I am working on a problem where I want to build a linear model using residuals of two other linear models. I have used UN3 data set to show my problem since its easy put the problem here than using my ...
0
votes
2answers
73 views

lm(y~x*g) ignoring one value for g

I'm trying to use R for the first time. In this case, y is oxygen consumption, x is time and g is status indicated by up to three letters (NYF, IR, F, M, or NF). It will run regressions for each ...
3
votes
2answers
57 views

Converting a grouped continous variable into rows in R

I have a data frame with these values dummy vales and I want to do lm regression on them. One of the variables is a grouped continuous variable as shown below df <- data.frame("y" = c(10, 11, 12, ...
0
votes
2answers
89 views

geom_segment: Removed 1 rows containing missing values [closed]

I am working through a linear regression example for uni variate data. The example is listed in this webpage: http://al3xandr3.github.com/2011/02/24/ml-ex2-linear-regression.html Sorry for not ...
1
vote
2answers
146 views

R-sq values, linear regression of several trends within one dataset

I am running into a sticky spot trying to solve for variance accounted for by trend several times within a single data set..... My data is structured like this x <- read.table(text = " STA YEAR ...
0
votes
1answer
102 views

Extracting the terminal nodes of each tree associated with a new observation

I would like to extract the terminal nodes of the random forest R implementation. As I have understood random forest, you have a sequence of orthogonal trees. When you predict a new observation (In ...
1
vote
1answer
165 views

Linear Regression calculation several times in one dataframe

I am using R to evaluate climate data and I have a data set that looks like the following miniaturized version... please forgive my crude posting etiquette, I hope this post is understandable. ...
0
votes
0answers
81 views

rcs generates bad prediction in lm() models

I'm trying to reproduce this blog post on overfitting. I want to explore how a spline compares to the tested polynomials. My problem: Using the rcs() - restricted cubic splines - from the rms package ...
2
votes
1answer
99 views

Why am I getting different intercept values in R and Java for simple linear regression?

I have linear regression code written in R and I have to do the same thing in Java. I used Apache Commons math library for this. I used the same data in R code and in Java code, but I got different ...
0
votes
2answers
333 views

linear regression in Java similar in R [duplicate]

Possible Duplicate: Is there a Java library for better linear regression? (E.g., iteratively reweighted least squares) I have a following code inf R, but i need to implement the same thing ...
0
votes
1answer
78 views

How to know which x values to use in predict method in R?

I have fitted a linear model: f <- lm(y ~ x) From that I used the predict method p <- predict(f) But the predict method does not deliver the expected result. In the following image I have ...
2
votes
1answer
200 views

Plot and report X intercept from linear regression - R

I am using lm in r for linear regression. I would like to plot and report the x intercept. I know that I could use algebra and solve for x by setting y = 0, but is there a way to have r report it to ...
0
votes
1answer
180 views

'Fixed knots and prediction' in piecewise linear regression using the segmented package

Hi this question relates to a question asked previously but as that was succesfully answered and my queries are now different I feel a new question is valid. Also please feel free to move this to ...
2
votes
5answers
592 views

how to plot the linear regression in R?

I want to make the following case of linear regression in R year<-rep(2008:2010,each=4) quarter<-rep(1:4,3) cpi<-c(162.2,164.6,166.5,166.0,166.4,167.0,168.6,169.5,170.0,172.0,173.3,174.0) ...
0
votes
0answers
72 views

Generating predictions for multiple linear models

Firstly, I am a very novice user of R so please bear with me if this seems fairly straightforward! I have a .csv file of all the potential linear models (32767 of them) that could predict my response ...
0
votes
2answers
584 views

Time series prediction using R

I have the following R code library(forecast) value <- c(1.2, 1.7, 1.6, 1.2, 1.6, 1.3, 1.5, 1.9, 5.4, 4.2, 5.5, 6, 5.6, 6.2, 6.8, 7.1, 7.1, 5.8, 0, 5.2, 4.6, 3.6, 3, 3.8, 3.1, 3.4, 2, 3.1, 3.2, ...
0
votes
2answers
156 views

Include quadratic terms in Deducer's Linear Regression Model Builder

What should I do in Deducer's Linear Regression Model Builder to produce a formula like the following lm(ozone~temp*wind*rad+I(rad^2)+I(temp^2)+I(wind^2)) In the Outcomes text box I have the ozone ...
0
votes
0answers
56 views

Bivariate response with mixed effect model

I would like to fit my data with two response variables including: Energy and Nitrogen (as the responses) vs DMI and MY (as predictors) and Study as a random effect. Of course I could fit them ...

1 2 3