for issues related to linear regression modelling approach
0
votes
0answers
24 views
Fixing intercepts with categorical and numeric variables
I am doing some phylogenetic comparative models on intestinal traits(continuous numeric) in R. I am trying to generate two different types of models in the 'nlme' package. One of which is fixing the ...
0
votes
0answers
57 views
Linear Regression Curve in R
I am trying to implement the linear Regression curve mentioned at this link in R and need help.
Link: Linear Regression Curve
I found the following ThinkScript code that implements what I am looking ...
0
votes
1answer
40 views
Add line to ci.plot
I've made a confidence interval plot to a simple linear regression problem using ci.plot from the HH library
observations2 <- subset(observations, year > 1994 & year < 2049)
model.seaice ...
0
votes
0answers
42 views
In R: Can a model formula include variables in a numerator and denominator?
I am trying to find the best fit between an species dataset and prevailing climatic conditions, in order to be able to predict the environmental conditions from the species dataset (paleoclimate ...
-1
votes
0answers
32 views
Fit Linear Model Using Generalized Least Squares with Unknown Covariance Matrix [closed]
I want to fit a linear model y on x with respect to a grouping factor and with respect to a covariance structure of dependent variable within groups. I have a dataset similar to the following.
y1 ...
0
votes
0answers
21 views
Logistic Regression Backward elimination using Java
I'm looking for a Java library/framework for Logistic Regression Backward Elimination task.
Can someone recommend me one ?
0
votes
0answers
15 views
Scipy optimize minimize slsqp tries to take len of float64
This is a continuation from Scipy Minimize uses a NoneType. Thanks to user333700 for their help with that previous error. Every argument in the optimize.minimize call is as defined in the previous ...
2
votes
0answers
23 views
numpy multivarient regression with linalg.lstsq
I am trying to solve for m1,m2,m3,m4 in the set of equations such that:
y=(m1*x1)+(m2*x2)+(m3*x3)+(m4*x4)
Where:
x1=[x11,x12,x13...]
x2=[x21,x22,x23...]
x3=[x31,x32,x33...]
x4=[x41,x42,x43...]
...
1
vote
1answer
35 views
Scipy Minimize uses a NoneType
I'm trying to code a multiple linear regression. Here's the line of code where my program raises an error:
least = optimize.minimize(residsq(xmat, ylist, coeff), coeff, constraints = ({'type': 'eq', ...
3
votes
1answer
64 views
matlab plotting linear regression on a 3D scatter plot
I am new to matlab and have just started on the UBC AI course. I used the least squares algorithm to generate the weights for the data-set I'm working with and the weights ive generated are [ 0.3400 ...
-2
votes
0answers
42 views
Transforming variables for multiple regression in R [closed]
I am trying to perform a multiple regression in R. However, my dependent variable has the following plot:
I know that I need to perform a transformation on this variable (and possibly the ...
4
votes
1answer
1k views
“weighted” regression in R
I have created a script like the one below to do something I called as "weighted" regression:
library(plyr)
set.seed(100)
temp.df <- data.frame(uid=1:200,
...
0
votes
0answers
6 views
Regression of a binary variable with a dominating class (more examples from that class)
How can I perform a regression where the dependent variable is binary and there are many more examples of one class that the other one?
I am specifically interested in the regression case, not ...
-1
votes
0answers
33 views
NLME regression & curve comparison in R. ANOVA p-value [closed]
I got data of typical time point in two conditions in this shape
weigth condition time
0.1307857 Transf 1
0.1926429 Transf 2
0.2734286 Transf 3
0.4403571 Transf 4
0.6037143 ...
1
vote
1answer
60 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 ...
-1
votes
0answers
50 views
R: finding regression of straight line after and before inflection point
I have made a scatterplot of a curve line on the following data.
df<-data.frame(Time = c('12:55','12:56','12:57','12:58','12:59', ...
1
vote
1answer
86 views
Rescue all prediction results in Liblinear for Java
I was wondering how one can rescue all of the prediction results when using the Java API for liblinear.
As it is well documented one can rescue the accuracy of the prediction with the following code:
...
1
vote
1answer
3k views
linear regression/trend line with ms charting
I have data that are numbers both on x and y and have charted them using mschart 4.0
I need to add a trend line/linear regression to a bunch of points I have. The data on x and y are both numbers ...
2
votes
1answer
86 views
Constrained least-square regression - Matlab or R
I'm doing a least-square regression on some data, the function has the form
y ~ a + b*x
and I want the regression line to pass through a specific point P(x,y) (which is not the origin).
How can I ...
0
votes
1answer
35 views
Proper Formatting and Procedures for Basic Data Entry and Manipulation in SAS
I have a data file that I am trying to import into SAS that looks something like the below:
WCM2B W C M 2 B M.B 2 18.4 12.3 g
WCM2B W C M 2 B M.B 2 19.2 12.3 g
WCM2B W C M 2 B S.P 2 19.5 DQ ('')
...
6
votes
3answers
1k views
John Tukey “median median” (or “resistant line”) statistical test for R and linear regression
I'm searching the John Tukey algorithm which compute a "resistant line" or "median-median line" on my linear regression with R.
A student on a mailling list explain this algorithm in these terms :
...
2
votes
0answers
27 views
R: saving lm object with least amount of space while still maintaining functionality of the predict function
I have developed a linear regression model using lm. My main purpose is to predict a prediction interval using the function predict.
As it stands right now, the lm object is too big for my taste. ...
-1
votes
0answers
17 views
Code binary categorical (participates: yes/no) as a continuous variable (proportion of cells within participating country) in linear regression model? [closed]
I have a question regarding the coding of variables in r for linear regression models:
I did regression analyses to find out the relative importance of 12 variables in predicting different continuous ...
1
vote
1answer
36 views
How do I combine the results (predictions) if I have generated predictions from say, randomforest, gbm, svm, nnet to get more accurate predictions?
More specifically, how to improve my predictions by creating an ensemble? I mean I know that we perform regression on the results(predictions) one gets from different algorithms(random forest, nnet, ...
1
vote
1answer
40 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, ...
-1
votes
1answer
70 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 ...
3
votes
1answer
68 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
56 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 ...
0
votes
0answers
25 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
81 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
2answers
190 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
35 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 ...
3
votes
1answer
260 views
R Pass colname into glht function as variable in loop
I'm sure I'm missing something obvious here; am trying to use a loop to change the inputs to a formula, then generate a glht involving that formula. (glht = general linear hypothesis test). Thanks ...
3
votes
3answers
210 views
R Is there a way to do thresholding in linear regression?
I'm trying to do a linear regression but I'm only looking to use variables with positive coefficients (I think this is called hard-thresholding, but I'm not certain).
for example:
> summary(lm1)
...
0
votes
0answers
61 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
23 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 ...
6
votes
3answers
7k views
Are there any Linear Regression Function in SQL Server?
Are there any Linear Regression Function in SQL Server 2005/2008, similar to the the Linear Regression functions in Oracle ?
2
votes
3answers
1k views
Can scipy.stats identify and mask obvious outliers?
With scipy.stats.linregress I am performing a simple linear regression on some sets of highly correlated x,y experimental data, and initially visually inspecting each x,y scatter plot for outliers. ...
0
votes
1answer
51 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 ...
5
votes
3answers
2k views
Gradient descent algorithm won't converge
I'm trying to write out a bit of code for the gradient descent algorithm explained in the Stanford Machine Learning lecture (lecture 2 at around 25:00). Below is the implementation I used at first, ...
2
votes
0answers
135 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 ...
5
votes
2answers
3k views
Linear Regression with explicit intercept in R
I want to calculate a linear regression using the lm() function in R. Additionally I want to get the slope of a regression, where I explicitly give the intercept to lm().
I found an example on the ...
0
votes
0answers
70 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
65 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
90 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 ...
0
votes
1answer
42 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)
...
2
votes
2answers
157 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
81 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 ...
0
votes
0answers
40 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?
4
votes
1answer
2k views
lm predict won't predict
I have 2 data frames. One is training data (pubs1), the other (pubs2) test data. I can create a linear regression object but am unable to create a prediction. This is not my first time doing this ...
