search for: incm

Displaying 12 results from an estimated 12 matches for "incm".

Did you mean: inc
2017 Sep 15
7
require help
...am unable to convert my data frame into time series. kindly help me. also using zoo and xts packages. but they take only monthly observations. 'data.frame': 30 obs. of 4 variables: $ year: int 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 ... $ cnsm: num 174 175 175 172 173 ... $ incm: num 53.4 53.7 53.5 53.2 53.3 ... $ wlth: num 60.3 60.5 60.2 60.1 60.7 ... -- Yadawananda Neog Research Scholar Department of Economics Banaras Hindu University Mob. 9838545073 [[alternative HTML version deleted]]
2010 Feb 06
2
lmer Error message
Does anybody knows what this error message means: Error in object$terms : $ operator not defined for this S4 class I have peformed the following steps: > library(lattice) > library(Matrix) > library(lme4) > inkm inkm$Gamie glm.incm drop1(glm.incm,test="Ch") Error in object$terms : $ operator not defined for this S4 class Your suggestin would be of a greatl help to me, Martin
2017 Sep 16
2
require help
...his df <- read.csv(file="data2.csv",header=TRUE) dates <- as.Date(paste(df$year,"-01-01",sep="")) myXts <- xts(df,order.by=dates) head(myXts) #The last command "head(myXts)" shows you the first few rows of the xts object year cnsm incm wlth 1980-01-01 1980 173.6527 53.3635 60.3013 1981-01-01 1981 175.4613 53.6929 60.4980 1982-01-01 1982 174.5724 53.4890 60.2358 1983-01-01 1983 171.5070 53.2223 60.1047 1984-01-01 1984 173.3462 53.2851 60.6946 1985-01-01 1985 171.7075 53.1596 60.7598 On Sat, Sep 16, 2017 at 9:55 AM, Berend Has...
2017 Sep 22
2
require help
...nput data.frame, DF, is of the form shown reproducibly in the Note below, to convert the series to zoo or ts: library(zoo) # convert to zoo z <- read.zoo(DF) # convert to ts as.ts(z) # Note: DF <- structure(list(year = c(1980, 1981, 1982, 1983, 1984), cnsm = c(174, 175, 175, 172, 173), incm = c(53.4, 53.7, 53.5, 53.2, 53.3), with = c(60.3, 60.5, 60.2, 60.1, 60.7)), .Names = c("year", "cnsm", "incm", "with"), row.names = c(NA, -5L), class = "data.frame") On Sat, Sep 16, 2017 at 8:10 AM, yadav neog <yadavneog at gmail.com> wr...
2017 Sep 16
0
require help
...data2.csv",header=TRUE) > dates <- as.Date(paste(df$year,"-01-01",sep="")) > myXts <- xts(df,order.by=dates) > head(myXts) > > #The last command "head(myXts)" shows you the first few rows of the xts > object > year cnsm incm wlth > 1980-01-01 1980 173.6527 53.3635 60.3013 > 1981-01-01 1981 175.4613 53.6929 60.4980 > 1982-01-01 1982 174.5724 53.4890 60.2358 > 1983-01-01 1983 171.5070 53.2223 60.1047 > 1984-01-01 1984 173.3462 53.2851 60.6946 > 1985-01-01 1985 171.7075 53.1596 60.7598 > > >...
2017 Sep 16
0
require help
...me into time series. > kindly help me. > also using zoo and xts packages. but they take only monthly observations. > > 'data.frame': 30 obs. of 4 variables: > $ year: int 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 ... > $ cnsm: num 174 175 175 172 173 ... > $ incm: num 53.4 53.7 53.5 53.2 53.3 ... > $ wlth: num 60.3 60.5 60.2 60.1 60.7 ... > -- Second try to do what you would like (I hope and think) Using Eric's sample data <code> zdf <- data.frame(year=2001:2010, cnsm=sample(170:180,10,replace=TRUE), incm=rnorm(10,53...
2017 Sep 15
0
require help
...ry what kind of an analysis but perhaps you don?t have to. > kindly help me. > also using zoo and xts packages. but they take only monthly observations. If you really have to convert to xts/zoo, why don?t yo set each year to first day of January and use it as is? For instance, index, cnsm, incm, wlth 1980-01-01, 174, 53.4, 60.3 1981-01-01, 175, 53.7, 60.5 1982-01-01, 175, 53.5, 60.2 ?.. > > 'data.frame': 30 obs. of 4 variables: > $ year: int 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 ... > $ cnsm: num 174 175 175 172 173 ... > $ incm: num 53.4 53.7 53.5...
2017 Sep 22
0
require help
...ote below, to convert the series to zoo or ts: > > library(zoo) > > # convert to zoo > z <- read.zoo(DF) > > # convert to ts > as.ts(z) # > > > Note: > > DF <- structure(list(year = c(1980, 1981, 1982, 1983, 1984), cnsm = c(174, > 175, 175, 172, 173), incm = c(53.4, 53.7, 53.5, 53.2, 53.3), > with = c(60.3, 60.5, 60.2, 60.1, 60.7)), .Names = c("year", > "cnsm", "incm", "with"), row.names = c(NA, -5L), class = "data.frame") > > > On Sat, Sep 16, 2017 at 8:10 AM, yadav neog <yadavn...
2010 Dec 15
2
excluding child folders in omindex search
hi there, is there an option to exclude child folders when running omindex? For example: omindex -p --db /var/blah/default --url /something /var/www --exclude /var/www/ignore Thanks, Jeff
2017 Sep 15
0
require help
...me into time series. > kindly help me. > also using zoo and xts packages. but they take only monthly observations. > > 'data.frame': 30 obs. of 4 variables: > $ year: int 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 ... > $ cnsm: num 174 175 175 172 173 ... > $ incm: num 53.4 53.7 53.5 53.2 53.3 ... It shouldn't be difficult. Example: tsdata <- data.frame(year=c(2000,2002,2003), x=c(1,2,3),y=c(10,11,12)) xy.ts <- as.ts(tsdata) library(zoo) as.zoo(xy.ts) Berend Hasselman > $ wlth: num 60.3 60.5 60.2 60.1 60.7 ... > -- > Yadawananda...
2003 Mar 24
2
Robust standard errors
...ying to calculate robust standard errors for a logit model. I installed the package "car" and tried using hccm.default, but that required an lm object. Is there some way to do a similar operation for a glm object? x <- hccm.default(glm(winner ~ racebl + racehi + raceas + inchi + incmed + edhs + edcol + edba + agec1 + agec4 + sex + margin + regla + regbay + regsc + libcon+ pdem + poth, data = zol, family = binomial, weights = NULL)) Error in hccm.default(glm(winner ~ racebl + racehi + raceas + inchi + : requires an lm object > Thanks, Nirmala Ravishankar *******...
2017 Dec 06
1
Howto authenticate smartPhone via Active Directory
...None of the sites I've visited on this error indicate it has anything to do with the actual password's complexity. Perhaps I'm just thick-skulled with all this. If you or anyone can see something obviously wrong with my conf, or have any suggestion at all on a baby step I can take to incm me forward, please let me know. Thanks, --Mark doveconf -n: # 2.2.33.2 (d6601f4ec): /usr/local/etc/dovecot/dovecot.conf # OS: Linux 4.4.88 x86_64 Slackware 14.2 auth_debug = yes auth_debug_passwords = yes auth_gssapi_hostname = $ALL auth_krb5_keytab = /etc/dovecot/dovecot.keytab auth_mechanisms...