Displaying 3 results from an estimated 3 matches for "feol".
Did you mean:
fool
2004 Aug 17
3
2 gb size limit
...x Advanced Server release 2.1AS
I do a uname -a and get the following 2.4.18-14smp
I have samba 2.2.7-3.7.2
I have setup a share going from linux to windows and it seems to work fine
up to 2 gig
when it hits 2 gig it stops. Do I need to upgrade to a newer release of
samba.
Thank You
Ralph
Ralph Feole
LogistiCare, Inc.
ralphf@logisticare.com
2012 Nov 01
2
Subsetting year range
...s with Sample = 1
TableAP <- subset(TableAP, sample == 1)
TableAPS1 <- subset(TableAPS1, select = c(code, country, year, polity4,
Lagpolity4, lrgdpch, Laglrgdpch))
TableAPS1<- ts(TableAPS1)
# Run FE OLS with lag real GDP and lag democracy
# -1 is to subtract the intercept
library(dyn)
FEOLS <- dyn$lm(polity4 ~ -1 + Lagpolity4 + Laglrgdpch + factor(year)+
factor(code), TableAPS1)
FEOLS
--
View this message in context: http://r.789695.n4.nabble.com/Subsetting-year-range-tp4648096.html
Sent from the R help mailing list archive at Nabble.com.
2009 Feb 07
1
fixed effects regression
...same!!! weird!!)
I attach my own code, just in case.
I am pretty sure this would not have any fundamental error. Well, hopefully. I have been using this code for a while..)
And does anyone know how I can include another fixed effect into this code? :(
Any help will be deeply appreciated....
feols = function(y,X,id) {
n = length(y);
uniq_id = unique(id);
n_id = length(uniq_id);
dummy = matrix(rep(0,n*(n_id-1)),nrow=n);
for (i in 1:(n_id-1))
dummy[id==uniq_id[i],i] = 1;
X = cbind(rep(1,n),X,dummy);
k = ncol(X);
invXX = solve(t(X) %*% X);
b = as...