for issues related to linear regression modelling approach
0
votes
3answers
745 views
A simple perceptron in Python
http://en.wikipedia.org/wiki/Perceptron#Example
My question is, why are there 3 input values in each vector when NAND only takes 2 parameters and returns 1:
...
2
votes
2answers
110 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
73 views
lm(y~x*g) ignoring one value for g
I'm trying to use R for the first time.
In this case, y is oxygen consumption, x is time and g is status indicated by up to three letters (NYF, IR, F, M, or NF). It will run regressions for each ...
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 ...
0
votes
2answers
256 views
Decorrelating the data
How can we calculate square root of a non-square matrix?
p.s. I tried Jordan Matrix Decomposition method but it seems it's applicable only on square matrices.
0
votes
1answer
265 views
How can I obtain segmented linear regressions with a priori breakpoints?
I need to explain this in excruciating detail because I don't have the basics of statistics to explain in a more succinct way. Asking here in SO because I am looking for a python solution, but might ...
0
votes
1answer
549 views
Efficient Cointegration Test in Python
I am wondering if there is a better way to test if two variables are cointegrated than the following method:
import numpy as np
import statsmodels.api as sm
import statsmodels.tsa.stattools as ts
y ...
0
votes
1answer
96 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 ...
0
votes
1answer
288 views
Which is the best package for econometrics in java?
I was wondering if there is a Java toolkit that deals with econometrics. I am aware of Jet ( http://jet.codehaus.org/) and other regression packages (like ...
0
votes
1answer
348 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 ...