Tagged Questions
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 ...
-2
votes
1answer
67 views
Is this system linear? Can I apply crammer? [closed]
There is this website http://www.diabloprogress.com/items/ that has it's own criterias (unknown to me) calculating a rating for each item. I am not interested if those criterias or weights are right ...
1
vote
1answer
251 views
liblinear (in java) simple example won't work
I'm trying to operate the liblinear library (java), and i'm using a super-simple example with the template found here.
The case example is to determine if a shape is a square or a rectangle.
here is ...
0
votes
2answers
138 views
Applying mathematical expressions on time series data
I have parsed HL7 file and have generated some values. So that now, I have series of values over time for different identifiers of OBX segment of HL7 file.
Now, as per requirement I want to apply ...
2
votes
2answers
83 views
SLR - simple linear regression (in R, but about the math behind, not the programming)
So I have some problems understanding simple linear regression. I did read a lot, so I have the basic ideas in mind, but I cannot quite follow when we do one. So I have this equation:
yi = a + bxi + ...
3
votes
3answers
723 views
Creating a trend line from data set SQL
The code below returns the number of resolved tickets and the number of opened tickets for a period (period is YYYY,WW) going back a certain number of days. For example if @NoOfDays is 7:
resolved ...
0
votes
1answer
148 views
multiple regression using only covar matrix and means
I have a comprehensive covariance matrix for variables y1 (dependent variable), x1, x2, x3 (independent variables) and the associated mean values for each variable. How can I perform multiple ...
1
vote
1answer
852 views
pure python code for multivariate linear regression
Due to a bug (perhaps in the numpy distribution I'm using), I can't use numpy.linalg.lstsq. And every statistics library I found didn't install under python 3 (on Windows).
Does someone have pure ...
5
votes
3answers
3k views
Is there a Java library for better linear regression? (E.g., iteratively reweighted least squares)
I am struggling to find a way to perform better linear regression. I have been using the Moore-Penrose pseudoinverse and QR decomposition with JAMA library, but the results are not satisfactory. ...
1
vote
2answers
331 views
What exactly does delta mean in the gradient descent algorithm?
As on the picture:
Could someone help me understand what exactly what delta means in the gradient descent algorithm?
1
vote
3answers
297 views
Linear regression factor
Given a list of points, I need to achieve a simple linear regression on them. This part is quite easy and code examples can be found in a lot of places.
My problem is determining the regression ...
2
votes
2answers
447 views
Java or C equivalent of MATLAB's robustfit
MATLAB has a magnificent robustfit function that solves the problem of excluding outliers with linear regression fitting. Is there anything similar written in Java or C (or in language X that could be ...
0
votes
2answers
591 views
Linear Regression and Java Dates
I am trying to find the linear trend line for a set of data. The set contains pairs of dates (x values) and scores (y values). I am using a version of this code as the basis of my algorithm.
The ...
3
votes
6answers
2k views
Multiple Linear Regression
I am trying to use GLSMultipleLinearRegression (from apache commons-math package) for multiple linear regression. It is expecting a covariance matrix as input -- I am not sure how to compute them. I ...
1
vote
2answers
654 views
Can I force two components in a three-way linear regression to be positive?
I'm sorry if I'm not using the correct mathemathical terms, but I hope you'll understand what I'm trying to accomplish.
My problem:
I'm using linear regression (currently least squares method) on the ...
