Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
5answers
187 views

using predict with a list of lm() objects

I have data which I regularly run regressions on. Each "chunk" of data gets fit a different regression. Each state, for example, might have a different function that explains the dependent value. This ...
6
votes
3answers
97 views

Why does lm return values when there is no variance in the predicted value?

Consider the following R code (which, I think, eventually calls some Fortran): X <- 1:1000 Y <- rep(1,1000) summary(lm(Y~X)) Why are values returned by summary? Shouldn't this model fail to ...
5
votes
2answers
144 views

Strange behaviour of gcc and math.h?

I've been trying to build some code that uses math functions (e.g. pow). math.h is included, and the flag -lm is used during the build. When compilation is called like this (-lm flag at the begining ...
4
votes
1answer
96 views

R: lm() na.action

I have a vector Y containing future returns and a vector X containt current returns. The last Y element is NA, as the last current return is also the very end of the available series. X = { 0.1, 0.3, ...
4
votes
3answers
240 views

Finding where two linear fits intersect in R

I have two linear fits that I've gotten from lm calls in my R script. For instance... fit1 <- lm(y1 ~ x1) fit2 <- lm(y2 ~ x2) I'd like to find the (x,y) point at which these two lines (fit1 ...
4
votes
2answers
220 views

Drop lines from actual to modeled points in R

Yesterday I worked up an example of the difference between Ordinary Least Squares (OLS) vs. Principal Components Analysis (PCA). For that illustration I wanted to show the errors minimized by OLS and ...
3
votes
1answer
83 views

regression on subsets for unique factor combinations using lm

I would like to automate a simple multiple regression for the subsets defined by the unique combinations of the grouping variables. I have a dataframe with several grouping variables df1[,1:6] and ...
3
votes
2answers
90 views

Force Coefficient to be Negative in R lm

I want to force one of the coefficients in my model to be less than or equal to zero. The nnls package allows you to set all coefficients equal to or greater than zero, but I'm at a loss as to how to ...
3
votes
2answers
175 views

Linking with gcc and -lm doesn't define ceil() on Ubuntu

I am currently using gcc to compile and I need to use <math.h>. Problem is that it won't recognize the library. I have also tried -lm and nothing. The function I tried to use was ceil() and I ...
3
votes
1answer
100 views

How do I run a multiple linear regression using a vector as my predictors?

I'm hoping to do something like this: data = read.table("mydata.txt", header=T)[,-1] ...
3
votes
2answers
191 views

Understanding lm and environment

Could you help me explain the following? I'm executing the lm function with parameters formula, data, na.action, and weights. My weights are stored in a numeric variable. When I call lm and formula ...
3
votes
1answer
103 views

How to update summary when using NeweyWest?

I am using NeweyWest standard errors to correct my lm() / dynlm() output. E.g.: fit1<-dynlm(depvar~covariate1+covariate2) coeftest(fit1,vcov=NeweyWest) Coefficients are displayed the way I´d ...
2
votes
2answers
46 views

How to get y_hat using predict() when both response variable and explanatory variables are log transformed?

I have a log-log linear function as: lom1 = lm(log(y)~log(x1)+log(x2),data=mod_dt) I want to get y_hat using the same data set and I did yhat = exp(predict(lom1)) Result seems off a lot (from ...
2
votes
0answers
29 views

R calculate robust standard errors (vcovHC) for lm model with singularities

In R, how can I calculate robust standard errors using vcovHC() when some coefficients are dropped due to singularities? The standard lm function seems to do fine calculating normal standard errors ...
2
votes
0answers
31 views

Why is there an R^2 value (and what is determining it) when lm has no variance in the predicted value? [migrated]

Consider the following R code: example <- function(n) { X <- 1:n Y <- rep(1,n) return(lm(Y~X)) } #(2.13.0, i386-pc-mingw32) summary(example(7)) #R^2 = .1963 ...
2
votes
1answer
91 views

R: cannot predict specific value

> age <- c(23,19,25,10,9,12,11,8) > steroid <- c(27.1,22.1,21.9,10.7,7.4,18.8,14.7,5.7) > sample <- data.frame(age,steroid) > fit2 <- ...
2
votes
6answers
132 views

Inference about Slope coefficient in R

By default lm summary test slope coefficient equal to zero. My question is very basic. I want to know how to test slope coefficient equal to non-zero value. One approach could be to use confint but ...
2
votes
1answer
107 views

R script - least squares solution to the following [closed]

Possible Duplicate: Finding where two linear fits intersect in R Given some points on a graph (usually only about 6 or 7 points), I need to find a best fit solution where the solution ...
2
votes
1answer
608 views

modify lm or loess function to use it within ggplot2's geom_smooth

I need to modify the lm (or eventually loess) function so I can use it in ggplot2's geom_smooth (or stat_smooth). For example, this is how stat_smooth is used normally: > qplot(data=diamonds, ...
1
vote
0answers
16 views

Specifying ngram size and add one smoothing in indri

I am trying to use the indri search engine of the lemur project. I have the following questions: 1) How to do we specify an Ngram size for the Langauge model that indri builds during indexing. 2) How ...
1
vote
1answer
53 views

Is it possible to fit a linear model with only a response variable?

If I do this, I get two coefficients (intercept and year) data <- data.frame(accidents=c(3,1,5,0,2,3,4), year=1:7) glm(accidents ~ year, family=poisson(link = log), data) Coefficients: ...
1
vote
1answer
91 views

R: numeric 'envir' arg not of length one in predict()

I'm trying to predict a value in R using the predict() function, by passing along variables into the model. I am getting the following error: Error in eval(predvars, data, env) : numeric ...
1
vote
2answers
65 views

Getting standard errors from regressions using rpy2

I am using rpy2 for regressions. The returned object has a list that includes coefficients, residuals, fitted values, rank of the fitted model, etc.) However I can't find the standard errors (nor ...
1
vote
1answer
53 views

R: extracting lm() attributes

I want to extract the fstatistic value from summary(lm()). So far the only way I've found is summary(lm(this_vector ~ that_vector))["fstatistic"][[1]][1] Is there a less verbose way to get that ...
1
vote
1answer
286 views

Sphinx 4 corrupted ARPA LM?

I have an ARPA LM generated by kylm, when running SPHINX I get this exception stack trace: Exception in thread "main" java.lang.RuntimeException: Allocation of search manager resources failed ...
1
vote
2answers
461 views

multivariate regression

I have two dependents that both depent on two variables AND on each other, can this be modelled in R (must be!) but I can't figure out how, anyone a hint? In clear terms: I want to model my data ...
1
vote
2answers
451 views

R: polynomial shortcut notation in nls() formula

With the linear model function lm() polynomial formulas can contain a shortcut notation like this: m <- lm(y ~ poly(x,3)) this is a shortcut that keeps the user from having to create x^2 and x^3 ...
0
votes
0answers
13 views

Type III sum of squares from SAS and R [migrated]

I'm analyzing data from an unbalanced factorial experiment both with SAS and R. Both SAS and R provide similar Type I sum of squares but their Type III sum of squares are different from each other. ...
0
votes
1answer
91 views

Predict() - Maybe I'm not understanding it

I posted earlier today about an error I was getting with using the predict function. I was able to get that corrected, and thought I was on the right path. I have a number of observations ...
0
votes
1answer
21 views

can not find lm while trying to configure staticly

I want to compile librcsc4.1.0 staticly but when I trying to configure it I get this checking for cos in -lm... no configure: error: *** -lm not found! *** I use this command for configure ...
0
votes
3answers
137 views

Determining the goodness of an R fit using lm()

I learned to get a linear fit with some points using lm in my R script. So, I did that (which worked nice), and printed out the fit: lm(formula = y2 ~ x2) Residuals: 1 2 3 ...
0
votes
0answers
130 views

Cointegration in PLM--Dickey-Fuller test on residuals

I have been working through a macroeconomic panel data set (n=30, t=31; OECD) using PLM, which has been a tremendous help. Since many of my variables are economic growth variables over time, they are ...
0
votes
2answers
183 views

I'm confusing between NTLM and NTLM (on network)

Im doing a little research about Windows password and I've a little question. Windows encrypt user passwords and store them on: C:\WINDOWS\system32\config\SAM encrypting them by the NTLM algorithm ...