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 ...
0
votes
2answers
82 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: ...
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
0answers
141 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
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 ...
0
votes
1answer
92 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 ...
-6
votes
1answer
114 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
200 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 ...
0
votes
0answers
98 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
147 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 ...
0
votes
1answer
75 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 ...
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, ...
8
votes
3answers
306 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
208 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) ...
1
vote
2answers
152 views

R-sq values, linear regression of several trends within one dataset

I am running into a sticky spot trying to solve for variance accounted for by trend several times within a single data set..... My data is structured like this x <- read.table(text = " STA YEAR ...
1
vote
1answer
184 views

Linear Regression calculation several times in one dataframe

I am using R to evaluate climate data and I have a data set that looks like the following miniaturized version... please forgive my crude posting etiquette, I hope this post is understandable. ...
0
votes
0answers
52 views

Multiple Linear Regression where all columns are independent variables [duplicate]

Possible Duplicate: short formula call for many variables when building a model I have a data frame that has 22,000 rows and 2,000 columns. The columns are samples and the rows are genes. ...
0
votes
1answer
644 views

Analyzing correlated data in R: Linear, Ridge regression, PCR

I've got a time series of observations of 5 variables y, x_1, x_2, x_3, x_4 and the task is to find which of the xes are responsible for the changes in y. Now the problem is that all of them are ...
0
votes
1answer
45 views

How to use linear regression in R if some values of one of predictors are missing?

y is expected to be a linear function of predictors x1, x2, ..., xn so I use glm to find a regression but some values of one of parameters (x1, for example) are missing (NA in input data) they are ...
1
vote
1answer
231 views

Linregress giving incorrect result

I am a big fan of Stack Overflow and am sure my question will be answered here. I am using Scipy to do linear regression. But at a particular set of inputs I am not getting the correct output. (Python ...
3
votes
2answers
559 views

Python linear fitting with multiple error bars

I am fitting some data with a linear fit. I want to weight the error bars. Up to this point, I have been using bulldogs fitting.py. Their linear_fit makes weighted linear regressions very easy. ...
4
votes
3answers
1k views

multivariate linear regression in python?

I can't seem to find any python libraries that do multivariate regression. The only things I find only do simple regression. I need to regress my dependent variable (y) against several independent ...
0
votes
1answer
103 views

lmFit model datasets requirements

I am very new to R and try to analyze a few expression array data. For the gene expression analysis, we use linear fit and eBayes to calculate the data. But if I only have one sample for each ...
1
vote
1answer
262 views

About using GAM Models in R

Currently I'm replicating the exercise did by Wood (2006) about the relationship between air pollution and death rates in Chicago, using GAM models. So, I followed the code he used in his book. The ...
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. ...
1
vote
1answer
342 views

Checking a panel unit root test in R done manually

I have spent much time looking for a special package that could run the Pesaran(2007) unit root test (which assumes cross-sectional dependence unlike most others) and I have found none. So, I decided ...
6
votes
3answers
223 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 ...
0
votes
1answer
376 views

Perl packages for statistics - multiple regression

I am new to perl and looking for a package that includes a code to calculate multiple regression. Something like OLS that is presented here: wikipedia - estimation methods for multiple regression ...
0
votes
3answers
4k views

How to find the standard deviation s of simple linear regression coefficients Alpha and Beta in Matlab?

I have data and I need to do a linear regression on the data to obtain y=Alpha*x+Beta Alpha and Beta are estimators given by the regression, polyfit can give me those with no problem but this is a ...
10
votes
3answers
4k views

Linear Regression in Javascript

I want to do Least Squares Fitting in Javascript in a web browser. Currently users enter data point information using HTML text inputs and then I grab that data with jQuery and graph it with Flot. ...
1
vote
1answer
2k views

How to read the correlation matrix output by PROC LOGISTIC and PROC REG in SAS?

As you know, with an option CORRB, you can let logistic regression or linear regression in SAS to output a correlations of estimates matrix. Interestingly, I am not sure how to read this matrix. I ...
3
votes
5answers
729 views

numpy: code to update least squares with more observations

I am looking for a numpy-based implementation of ordinary least squares that would allow the fit to be updated with more observations. Something along the lines of Applied Statistics algorithm AS 274 ...
3
votes
2answers
304 views

Do there exist methods to identify quadratic components in a linear model with R?

Suppose we have an additive model of the form y=x1+x2+... with a lot of variables. Is there a routine in R to identify variables that should be considered as exhibiting a quadratic effect? I know that ...
5
votes
1answer
156 views

Finding the break in data from a piecewise function

Greetings, I'm performing research that will help determine the size of observed space and the time elapsed since the big bang. Hopefully you can help! I have bilinear data on which I want to ...
11
votes
2answers
1k views

Optimal two variable linear regression calculation

Problem Am looking to apply the y = mx + b equation (where m is SLOPE, b is INTERCEPT) to a data set, which is retrieved as shown in the SQL code. The values from the (MySQL) query are: SLOPE = ...
7
votes
3answers
2k views

Conditionally colour data points outside of confidence bands in R

I need to colour datapoints that are outside of the the confidence bands on the plot below differently from those within the bands. Should I add a separate column to my dataset to record whether the ...
10
votes
1answer
934 views

Graphing perpendicular offsets in a least squares regression plot in R

I'm interested in making a plot with a least squares regression line and line segments connecting the datapoints to the regression line as illustrated here in the graphic called perpendicular offsets: ...
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 ?
0
votes
1answer
357 views

How to do a linear regression into a BIRT report?

How to make a linear regression on the chart displayed into your BIRT report. I have x and y data... but I don't see any function on eclipse BIRT to generate the linear regression... Any idea ? Many ...
0
votes
1answer
2k views

Is Linear Regression the same thing as Ordinary Least Squares Regression in SPSS?

I want to do a linear regression but I want to use Ordinary Least Squares which I think it is a type of Linear regression.. The software I use is SPSS and it only has linear regression, partial least ...
1
vote
2answers
2k views

How to compute the p-value in hypothesis testing (linear regression)

Currently I'm working on an awk script to do some statistical analysis on measurement data. I'm using linear regression to get parameter estimates, standard errors etc. and would also like to compute ...