Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

20
votes
4answers
1k views

Screening (multi)collinearity in a regression model

I hope that this one is not going to be "ask-and-answer" question... here goes: (multi)collinearity refers to extremely high correlations between predictors in the regression model. How to cure ...
16
votes
5answers
42k views

Handling browser pop-up windows with Selenium

We are running Selenium regression tests against our existing code base, and certain screens in our web app use pop-ups for intermediate steps. Currently we use the commands in the test: // force ...
12
votes
2answers
315 views

How to change points and add a regression to a cloudplot (using R)?

To make clear what I'm asking I've created an easy example. Step one is to create some data: gender <- factor(rep(c(1, 2), c(43, 41)), levels = c(1, 2),labels = c("male", "female")) numberofdrugs ...
9
votes
9answers
725 views

Best approach to what I think is a machine learning problem

I am wanting some expert guidance here on what the best approach is for me to solve a problem. I have investigated some machine learning, neural networks, and stuff like that. I've investigated ...
8
votes
4answers
16k views

What is the difference between Multiple R-squared and Adjusted R-squared in a single-variate least squares regression?

Could someone explain to the statistically naive what the difference between Multiple R-squared and Adjusted R-squared is? I am doing a single-variate regression analysis as follows: v.lm <- ...
7
votes
2answers
169 views

Visual Comparison of Regression & PCA

I'm trying to perfect a method for comparing regression and PCA, inspired by the blog Cerebral Mastication which has also has been discussed from a different angle on SO. Before I forget, many thanks ...
7
votes
2answers
371 views

Calculation of R^2 value for a non-linear regression

I would first like to say, that I understand that calculating an R^2 value for a non-linear regression isn't exactly correct or a valid thing to do. However, I'm in a transition period of performing ...
7
votes
6answers
4k views

Simple multidimensional curve fitting

I have a bunch of data, generally in the form a, b, c, ..., y where y = f(a, b, c...) Most of them are three and four variables, and have 10k - 10M records. My general assumption is that they are ...
6
votes
2answers
207 views

How to publish (sweave) regression formulas?

How can I publish a regression formula nicely? fit1<-dynlm(dep~indep1+indep2+indep3) s1<-summary(fit1) s1$call How can I Sweave s1$call ? I mean I do not want to have somethin like ...
6
votes
7answers
166 views

Should I Keep Registering A Failure?

I'm working on an automated regression test suite for an app which I maintain. While developing the automated regression test, I ran across some behavior that's almost certainly a bug. So, for now, ...
5
votes
3answers
256 views

Java-R integration?

I have a Java app which needs to perform partial least squares regression. It would appear there are no Java implementations of PLSR out there. Weka might have had something like it at some point, but ...
5
votes
2answers
246 views

is there an R function for Stata's xtnbreg?

Have been using STATA to run negative binomial regressions in a replication. Not sure what is under the hood on how STATA does this, but wanted to know if there is an R function/package that does the ...
5
votes
3answers
460 views

Tools for sparse least squares regression

I want to do sparse high dimensional (a few thousand features) least squares regression with a few hundred thousands of examples. I'm happy to use non fancy optimisation - stochastic gradient descent ...
4
votes
1answer
219 views

Extract regression coefficient values in R

I have a regression model for some time series data investigating drug utilisation. The purpose is to fit a spline to a time series and work out 95% CI etc. The model goes as follows: ...
4
votes
2answers
439 views

Multidimensional polynomial regression (preferably C/C++, Java or Scala)

Given a collection of (N+1)-dimensional real valued vectors with N independent and 1 dependent value, I would like to compute a polynomial of degree 1 (linear), 2 (quadratic) or higher that provides a ...
4
votes
3answers
124 views

Howto overcome Unit Test Regression Problems…?

I was looking for some kind of a solution for software development teams which spend too much time handling unit test regression problems (about 30% of the time in my case!!!), i.e., dealing with unit ...
4
votes
3answers
4k views

Multiple regression in Python

I am currently using scipy's linregress function for single regression. I am unable to find if the same library, or another, is able to do multiple regression, that is, one dependent variable and more ...
4
votes
6answers
1k views

Perl aids for regression testing

Is there a Perl module that allows me to view diffs between actual and reference output of programs (or functions)? The test fails if there are differences. Also, in case there are differences but ...
3
votes
2answers
64 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
3answers
94 views

Regression tree in R

I am having trouble making a regression tree in R. I have a data.frame with 17 atributes library(rpart) rt.model <- rpart(razlika ~ ., learn) I get an error: Error in [.data.frame(frame, ...
3
votes
1answer
87 views

Convert XML Data to Flat File in R

I am working with some XML data that I need to convert to a flat file so I can do statistical analysis. I am analyzing the data using R. Here is what a sample of the data looks like: <production ...
3
votes
1answer
98 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
101 views

Problems with writing to a table from a looped stepwise regression

I have a total of 95 potential predictor variables, I'd like to reduce that number to those variables with more predictive power. My plan thus far has been to write some code to: within a loop ...
3
votes
2answers
182 views

Weighted logistic regression in Python

I'm looking for a good implementation for logistic regression (not regularized) in Python. I'm looking for a package that can also get weights for each vector. Can anyone suggest a good implementation ...
3
votes
2answers
162 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 ...
3
votes
2answers
52 views

Unit testing at a higher level

I have a legacy code base in php, and we have a few applications in python (new codebase). I am attempting to migrate the legacy pieces to the new codebase/language. Currently I can only think of the ...
3
votes
2answers
236 views

Advice on calculating a function to describe upper bound of data

I have a scatter plot of a dataset and I am interested in calculating the upper bound of the data. I don't know if this is a standard statistical approach so what I was considering doing was splitting ...
3
votes
2answers
128 views

regression test dealing with hard coded path

I need to extend a python code which has plenty of hard coded path In order not to mess everything, I want to create unit-tests for the code before my modifications: it will serve as non-regression ...
3
votes
4answers
291 views

Regression Testing and Deployment Strategy

I'd like some advice on a deployment strategy. If a development team creates an extensive framework, and many (20-30) applications consume it, and the business would like application updates at least ...
2
votes
2answers
62 views

clustered standard errors R panel data

I have a panel data set in R (time and cross section) and would like to compute standard errors that are clustered by two dimensions because my residuals are correlated both ways. Googling around I ...
2
votes
0answers
75 views

How can I do exponential regression in Javascript?

can someone tell me how to do exponential regression or point me to a good explaination? I want to implement it in a javascript tool. I know that theoretically, I have to create a discrepancy ...
2
votes
2answers
184 views

How to perform likelihood ratio test on logistic regression in SAS?

I want to perform the standard likelihood ratio test in logsitic regression using SAS. I will have a full logistic model, containing all variables, named A and a nested logistic model B, which is ...
2
votes
4answers
88 views

Detecting and pinpointing performance regressions

Are there any known techniques (and resources related to them, like research papers or blog entries) which describe how do dynamically programatically detect the part of the code that caused a ...
2
votes
1answer
198 views

R - plotting results of nonparametric regression with npreg() ignores par(mfrow = c(1, 2))

I ran 20 nonparametric regressions using command "npreg" and saved the results. Now, I would like to plot (with style band and method asymptotic) these results into 1 multigraph, for example 3 plots ...
2
votes
1answer
131 views

How to obtain VIF using biglm package?

I refer to this post http://r.789695.n4.nabble.com/Questions-about-biglm-td878929.html which discusses on how to obtain VIF using biglm. Is there an alternative way of obtaining VIF from the object ...
2
votes
2answers
194 views

cooks distance plot how to get rid of legend

Assume this easy example: > numberofdrugs <- rpois(84, 5) > healthvalue <- rpois(84, 75) > test <-glm(healthvalue ~ numberofdrugs, family=poisson) > plot(test, which=5) Does ...
2
votes
5answers
361 views

Where can I get a Delphi/Pascal implementation of Excel-style polynomial regression curve fitting?

I have a set of X-Y values (i.e. a scatter plot) and I want a Pascal routine to generate the coefficients of a Nth order polynomial that fits those points, in the same way that Excel does.
2
votes
0answers
187 views

Regression in c# [closed]

Possible Duplicate: Free library for regression in c# Do you know of a free library in .net that I can use to fit a multivariate regression. I want to get the coefficients, and all the ...
2
votes
2answers
465 views

Fastest way to fit a parabola to set of points?

Given a set of points, what's the fastest way to fit a parabola to them? Is it doing the least squares calculation or is there an iterative way? Thanks Edit: I think gradient descent is the way to ...
2
votes
7answers
93 views

Possible to unit test code that wasn't initially design to be tested, without changing any code?

Is it generally accepted that you cannot test code unless the code is setup to be tested? A hypothetical bit of code: public void QueueOrder(SalesOrder order) { if (order.Date < ...
2
votes
3answers
123 views

Is this regression algorithm original and effective?

I've had an idea for a non-linear regression algorithm that I haven't seen before: We fit a simple parametric function, such as a radial basis function, to the data using gradient descent. We find ...
2
votes
0answers
290 views

3D Polynomial Regression

I need some pointers for writing a polynomial regression routine for 3-dimensional points (i.e. find the coefficients of an X order polynomial that is fitted to a certain number of 3D points). I've ...
2
votes
3answers
601 views

Two stage least square in R

I want to run a two stage probit least square regression in R. Does anyone know how to do this? Is there any package out there? I know it's possible to do it using Stata, so I imagine it's possible to ...
2
votes
2answers
576 views

Specifying formula in R with glm without explicit declaration of each covariate

I would like to force specific variables into glm regressions without fully specifying each one. My real data set has ~200 variables. I haven't been able to find samples of this in my online ...
2
votes
3answers
539 views

large-scale regression in R with a sparse feature matrix

I'd like to do large-scale regression (linear/logistic) in R with many (e.g. 100k) features, where each example is relatively sparse in the feature space---e.g., ~1k non-zero features per example. It ...
2
votes
3answers
107 views

What's the correct terminology for something that isn't quite classification nor regression?

Let's say that I have a problem that is basicly classification. That is, given some input and a number of possible output classes, find the correct class for the given input. Neural networks and ...
2
votes
2answers
317 views

regressions with many nested categorical covariates

I have a few hundred thousand measurements where the dependent variable is a probability, and would like to use logistic regression. However, the covariates I have are all categorical, and worse, are ...
2
votes
5answers
4k views

Curve Fitting 3D data set

The curve-fitting problem for 2D data is well known (LOWESS, etc.) but given a set of 3D data points, how do I fit a 3D curve (eg. a smoothing/regression spline) to this data? MORE: I'm trying to ...
2
votes
3answers
1k views

Equations for 2 variable Linear Regression

We are using a programming language that does not have a linear regression function in it. We have already implemented a single variable linear equation: y = Ax + B and have simply calculated ...
1
vote
1answer
74 views

R: regression with rational functions

I am new to R and have to perform a polynomial regression with rational functions in R. The function is as follows: numerator is A0 + A1*y + A2*y^2 denominator is B0 + B1*y + B2*y^2 and the ...

1 2 3 4