for issues related to linear regression modelling approach
1
vote
1answer
10 views
(Python) Estimating regression parameter confidence intervals with scikits bootstrap
I've just started to try out a nice bootstrapping package available through scikits:
https://github.com/cgevans/scikits-bootstrap
but I've encountered a problem when trying to estimate confidence ...
3
votes
1answer
53 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
34 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
64 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
0answers
20 views
Adaboost with basic Linear Classifier
I am trying to implement the adaboost algorithm with the simple linear classifier as weak learner. For this I am using the pseudo inverse rule. i.e.
w = inv(X*X')*X*t, where w is the weight vector of ...
0
votes
2answers
63 views
Linear regression library for Go language
I'm looking for a Go library that implements linear regression with MLE or LSE.
Has anyone seen one?
There is this stats library, but it doesn't seem to have what I need:
...
-2
votes
0answers
24 views
Gradient Descent in Ellipptical Contours take long time to converge. [closed]
I having difficulty understanding the gradient descent algorithm explained in the machine learning class taught on Coursera by Andrew Ng. The specific problem is that he says that when X1 varies ...
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
55 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
0answers
19 views
Fast way of finding RSS of Multiple Linear Regression
Is there any smarter way to compute Residual Sum of Squares(RSS) in Multiple Linear Regression other then fitting the model -> find coefficients -> find fitted values -> find residuals -> find norm of ...
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 ...
-1
votes
0answers
22 views
How to proof that MANOVA is a special case of mixed-effect models? [closed]
I've tried to look over the internet (especially on google scholar) to find a paper/book about it, but so far i haven't found anything.
If someone could link me something i'd be more than happy!
...
1
vote
0answers
93 views
Normalization in multiple-linear regression
I have a data set for which I would like build a multiple linear regression model. In order to compare different independent variable I normalize them by their standard deviation. I used ...
0
votes
0answers
49 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 ...
0
votes
1answer
59 views
Gretl - how to compute a matrix
i have a linear regression model:
yi = α + βxi + ui
and I want to compute:
(\sigma_u)^2(X'X)^(-1)
Can I do that in gretl and how?
If not, how to get the X matrix out of gretl?
I really ...
-5
votes
1answer
77 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
0answers
31 views
Scatter Chart and Linear Regression Line of them as Line Chart on Same Chart - Libreoffice
I x values and y values of points at Libreoffice. At same chart I want to do scatter points and another line that linear regression line of that points at same chart.
Any ideas how to do that?
0
votes
2answers
69 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
75 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 ...
0
votes
0answers
42 views
Why is cpu performance frequently used as example for linear regression methods?
I've seen several lecture notes and books using prediciton of cpu performance as an example for linear regression methods. Why do they do this?
I would, for instance, expect there to be a non-linear ...
0
votes
1answer
34 views
Error in curve fitting and other syntax issues
I have a set of vector 'measured_data' containing 200 sample data which are positive floating point values. I am having a tough time to find a model which fits this data.The following code returns ...
0
votes
1answer
109 views
Efficient way to do a rolling linear regression
I have two vectors x and y, and I want to compute a rolling regression for those, e.g a on (x(1:4),y(1:4)), (x(2:5),y(2:5)), ...
Is there already a function for that? The best algorithm I have in mind ...
-6
votes
1answer
98 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
...
0
votes
1answer
182 views
Simple linear regression for data set
I am looking to create a trend function in C# for a set of data and it seems like using a big math library is a bit overkill for my needs.
Given a list of values such as 6,13,7,9,12,4,2,2,1. I would ...
2
votes
1answer
156 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 ...
0
votes
0answers
47 views
Estimating dependent variable as sum of functions of independent variables
I have a training data of 5 columns, where c1 is the dependent variable and columns c2, c3, c4, c5 are independent variables.
I want to estimate c1 as sum of functions of ci (where i = 2, 3, 4, 5) in ...
1
vote
1answer
95 views
Scikit learn linear regression with several outputs
I'm trying to use scikit learn to do linear regression with several outputs
code (random data as example):
from sklearn import datasets, linear_model
import numpy as np
X = np.random.rand(300,10)
y ...
2
votes
2answers
149 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
1answer
141 views
Multiple Regression with math.net
Hello I am trying to get multiple regression with math.net and I am a little confused.
var xdata = new DenseMatrix(
new double[,]{{1, 36, 66, 45, 32},
{1, 37, 68, 12, 2},
...
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
163 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
110 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 ...
2
votes
1answer
93 views
linear regression on log-log histogram in numpy
I have a distribution (drawn with numpy.histogram) that seems to be linear when plotted on log-log axis. I'd like to compute and draw a linear regression on this histogram to find out the parameters ...
0
votes
1answer
70 views
Gradient Descent Implementation in Python returns Nan
I am trying to implement gradient descent in python; the implementation works when I try it with training_set1 but it returns not a number(nan) when I try it training_set. Any idea why my code is ...
0
votes
0answers
43 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
47 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 ...
1
vote
1answer
138 views
regression coefficient calculation in python
I have a Dataframe and an input text file of activity.Dataframe is produced via pandas.I want to find out the regression coefficient of each term using following formula
...
8
votes
3answers
274 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
187 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
141 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 ...
2
votes
2answers
197 views
Linear Regression\Gradient Descent python implementation
So I'm trying to implement linear regression using the gradient descent method from scratch for learning purposes. One part of my code is really bugging me. For some reason the variable x is being ...
1
vote
1answer
166 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 ...


