Regression analysis is a collection of statistical techniques for modeling and predicting one or multiple continuous variables based on data. It's a cornerstone of machine learning, and various algorithms and software packages can be used to fit and use regression models.

learn more… | top users | synonyms

0
votes
2answers
16 views

Using mercurial for storing binaries w.r.t regression testing

I have a project using mercurial as its dvcs I have written a regression testing tool in python Every now and then i tag a changeset (say for a customer release) The regression test scripts are in ...
2
votes
2answers
34 views

getting predictor names in R regression

I have an R code that is running about 100 regression models, grabbing R^2 values and printing them to a csv file as follows: filename<-"Reg_Results.csv"; cat("Setting,Origin Region,Destination ...
0
votes
0answers
17 views

Remove terms with NA coefficients from lm model with interactions

I'm training a model using lm with interactions by fit <- lm(Y ~ .^2, data) Some of the interaction terms have "NA" as their coefficient, indicating I suppose that not all terms are independent. ...
2
votes
0answers
36 views

MATLAB fminunc() not completing for large datasets. Works for smaller ones

I am performing logistic regression in MATLAB with L2 regularization on text data. My program works well for small datasets. For larger sets, it keeps running infinitely. I have seen the potentially ...
-1
votes
1answer
30 views

Interpreting regression coefficients in R [closed]

I'm trying to fit a x*log(x) model to the data. The fitting is performed successfully but I have difficulties in interpreting the resulting coefficients. Here a snapshot of my code. x <- c(6, 11, ...
0
votes
1answer
27 views

How to get measures of model fit (AIC, F-statistics) in zelig for multiply imputed data?

Following up on an earlier post, I am interested in learning how to get the usual measures of the relative quality of a statistical model in zelig for regression using multiply imputed data (created ...
0
votes
0answers
34 views

Displaying factors and levels with logistic regression in R

I have a dataframe model.vars containing discretized data on which to perform logistical regression, as follows: for(i in varnames) { modelformula = paste("dep_var~ ", as.factor(i)) ...
0
votes
0answers
23 views

statsmodels: specifying non-linear regression models using patsy

I am trying to calculate non-linear regression models using statsmodles. In particular I have problems learning the patsy syntax. Is there any tutorial or example how to formulate non-linear models ...
0
votes
1answer
27 views

Plotting multiple logistic curves using mapply

I have a set of 20 intercepts and coefficients for a logistic regression model. I'd like to plot them all on one graph (ideally, with base and not ggplot). I plot a single curve like this: x = ...
-1
votes
0answers
23 views

Nonlinear regression with neural network [closed]

I would like to share with you how I approached a nonlinear regression problem (2 inputs, one output) in Matlab, and have your advice. After some quick readings I settled for a network with one ...
-2
votes
0answers
49 views

AI - Classification vs regression

I am given a training set and I need to answer the following questions. (e) Train the network on the even-numbered patterns (P = 2, 4,..., 16) in trainSet for a 200 epochs. Use patterns 1, 5, 9 ...
0
votes
0answers
72 views

Regression model for periodic data

could someone help me to find adequate regression model for my data? I tried to seek it by changing model and initial approximation (ln 15-16) at this simple Python program: # -*- coding: utf-8 -*- ...
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 ...
4
votes
1answer
74 views

Missing object error when using step() within a user-defined function

5 days and still no answer As can be seen by Simon's comment, this is a reproducible and very strange issue. It seems that the issue only arises when a stepwise regression with very high predictive ...
0
votes
1answer
12 views

2nd (landscape) screen of application turns portait in iOS6

I 'm working on an iPad app in landscape mode only that worked nicely under iOS5 and under. On iOS6, the 2nd screen (login screen) turns suddenly in portrait mode. What parameters should i check ? ...
0
votes
0answers
11 views

Is there a tool for automated html diff regression testing?

Is there a tool which can scrape two versions of my application and give me a report on the HTML differences between them? Preferably with the ability to remove numbers/newlines/spaces and render the ...
0
votes
1answer
49 views

How can I output the processes within a function to a textfile in R (sink doesn't work when operations are run invisibly)?

I am trying to write a function that performs several stepwise regressions and outputs the 'steps' of each one to a text file. The problem I am having is that sink() doesn't actually output anything ...
1
vote
1answer
53 views

Multi-level regression model on multiply imputed data set in R (Amelia, zelig, lme4)

I am trying to run a multi-level model on multiply imputed data (created with Amelia); the sample is based on a clustered sample with group = 24, N= 150. library("ZeligMultilevel") ML.model.0 <- ...
0
votes
0answers
65 views

Strategy for building best fit multiple regression model with time lagged variables

I am building a multiple regression model - wrapped in a function - with one dependent variable and a dozen independent variables. The reason why I am building a function is that I need to do this ...
0
votes
2answers
72 views

Stata: Linear Regression With Over 11,000 Dummy Variables

I'm trying to run a panel regression with over 11,000 dummy interaction terms. My regression looks like this: xi: reg Y i.county*i.year where i.county*i.year represents interaction of dummy ...
2
votes
1answer
102 views

Logistic regression with robust clustered standard errors in R

A newbie question: does anyone know how to run a logistic regression with clustered standard errors in R? In Stata it's just "logit Y X1 X2 X3, vce(cluster X)", but unfortunately I haven't figured out ...
0
votes
1answer
88 views

C# Can LinearRegression code from Math.NET Numerics be made faster?

I need to do multiple linear regression efficiently. I am trying to use the Math.NET Numerics package but it seems slow - perhaps it is the way I have coded it? For this example I have only simple (1 ...
-3
votes
0answers
54 views

Recreating a rolling regression with Excel or R [duplicate]

I have a rolling regression indicator in a trading chart package I use. I would like to recreate this with excel or with R (which I am less familiar with). Could someone point me in the right ...
1
vote
2answers
54 views

Adding regression to scatter plot in R

I want to add regression to my scatter plot in R and to make elevation independent while snowfall dependent. I know how to construct a simple scatter plot - but using regression and making elevation ...
0
votes
1answer
24 views

Setting indicator variables to equal 1 or 0

I have to set HIGPA to equal 1 if the gpa is greater than 3, and if it is less, then HIGPA must equal 0. I am using R. gpa is already a variable in the data. HIGPA is not. So far I have made HIGPA a ...
0
votes
1answer
24 views

Any support vector regression (SVR) library that gives me the regression model/equation used?

I'm looking for a support vector regression (SVR) library that gives me the regression model/equation that was used to calculate the predicted values. Do you know of any lib to give me a regression ...
-4
votes
0answers
60 views

Predicting High frequency Finance time series [closed]

I have data in the following form Stock Price Broker632Behavior Broker666 Behavior Broker667Behavior 5.7 IP IP IP 5.6 ...
0
votes
1answer
78 views

Implementing Logistic Regression in MATLAB

I have a data set of 13 attributes where some are categorical and some are continuous (can be converted to categorical). I need to use logistic regression to create a model that predicts the responses ...
0
votes
0answers
38 views

PyMC regression of many regressions?

I haven't been using PyMC for long, but I was pleased at how quickly I was able to get a linear regression off the ground (this code should run without modification in IPython): import pandas as pd ...
0
votes
1answer
81 views

Weka - Logistic regression - Interpreting results

I am using Weka to perform a logistic regression using training data where a binary outcome is known. It performs reasonably well, categorizing approximately 80% of instances correctly. I also have a ...
3
votes
0answers
37 views

Which Regression methods are suitable for binary valued features and continuous output?

I want to build a machine learning model to regression on continuous output given binary valued features(0,1). the dimension of my problem is around 200. which of the flowing methods seems suitable ...
2
votes
2answers
74 views

Curve fitting for geo data

I recently whipped up a script for capturing large amounts geo data from Twitter's streaming API. I'm looking for some way to create a model to represent the geo "activity" for any given lat/lng point ...
-1
votes
0answers
61 views

How to report most important predictors using glmnet? [closed]

I want to find the most important predictors for a binomial dependent variable out of a set of more than 43,000 independent variables (These form the columns of my input dataset). The number of ...
-1
votes
1answer
45 views

Meaning of NA values in regressions in R

I've searched around on this forum but couldn't find any suitable answer. I'm trying to fit data using the lm() function in R. I'm return some NAs values for some coefficients as I increase the ...
0
votes
1answer
23 views

How to get all points for a fitted spline in R?

I am trying to find the MSE of a fitted smooth.spline in R (and compare it with other methods) using a default data set (cars). But using predict function decreases the number of my data points. In ...
0
votes
0answers
33 views

Implementing regression slope coefficient comparison using bootstrap in R

In this CrossValidated Answer, Gung mentioned about how to compare the slope coefficient of regression models using bootstrap. He talked about 6 steps to do it. I wrote the R code for step 1 to 4 but ...
1
vote
1answer
71 views

OLS in Python with Dummy Variables - Best Solution?

I have a problem I am trying to solve in Python, and I have found multiple solutions (I think) but I am trying to figure out which one is the best. I am hoping to choose libraries that will be ...
1
vote
0answers
46 views

Create and fit a Multiplicative linear regression using Python/Sklearn

I'm using Python 2.7 and Scikit-learn to fit a dataset using multiplicate linear regression, where the different terms are multiplied together instead of added together like in ...
0
votes
1answer
35 views

Determine coefficients for some function

I have a task that is probably related to data analysis or even neural networks. We have a data source of our partners, job portal. The source values are arrays of different attributes related to the ...
0
votes
0answers
12 views

Relevant attributtes in lasso

Anyone know how I can find the relevant attributes of a data set from the model coefficients lasso? In that I have to pay attention, the largest coefficients? the largest absolute value?
0
votes
0answers
69 views

Moving Average Weights Matlab

I want a dimension 5 weighted moving average for my vector Y in Matlab where the weights are automatically calculated using regression. I have searched online and understand that if we already have ...
0
votes
1answer
20 views

Prepare data for generalized linear regression

I want to perform glm for the dataset Titanic in R. I did the following steps to prepare the data and run glm install.packages("reshape") library(reshape) data=(Titanic) da=melt(Titanic) ...
0
votes
1answer
50 views

How to get the predicted values in training data set for Least Squares Support Vector Regression

I would like to make a prediction by using Least Squares Support Vector Machine for Regression, which is proposed by Suykens et al. I am using LS-SVMlab, which you can find the MATLAB toolbox here. ...
2
votes
2answers
86 views

Random Forest interpretation in scikit-learn

I am using sklearn.ensemble.RandomForestRegressor to fit a random forest regressor on a dataset. Now, that I have the results, is it possible to interpret this in some format where I can then ...
0
votes
0answers
29 views

Plotting quantile regression with two parameters

I'm trying to plot a fitted curve to 1: https://www.dropbox.com/s/0euuap3dsz84byg/image_forum.png "curve" For that I'm thinking to use the following code (based on the documentation provided by ...
-1
votes
0answers
49 views

Implementing Locally weighted Logistic Regression in R. Any packages ?

I want to implement Locally weighted Logistic Regression in R. I have a multi-dimensional data set. Is there a package that can help me.
-3
votes
0answers
23 views

Loop with Oaxaca Regressions and wage regression [duplicate]

I am trying to look at the effect of a reform. What is needed from me is to run my oaxaca decomposition regressions for each age by gender in order to see the effects of the reform on various ages and ...
1
vote
0answers
75 views

plot multiple fit and predictions for logistic regression

I am running multiple times a logistic regression over more than 1000 samples taken from a dataset. My question is what is the best way to show my results ? how can I plot my outputs for both the fit ...
1
vote
0answers
21 views

Nesterovs third method - implementation in python

I am looking at implementing Nesterov's method for my algorithm being written in python. Can anyone please point me to docs which can help me get started in terms of implementation of this method? I ...
-3
votes
1answer
49 views

Unable to interpret LOOP Results [closed]

I have never used loop before but I am looking at the change of gender wage differential in Vietnam after the implementation of the Doi Moi Reform in 1986. I conducted Oaxaca decompositions but my ...

1 2 3 4 5 12