search for: newm

Displaying 6 results from an estimated 6 matches for "newm".

Did you mean: new
2009 Feb 22
2
Convert a list to matrix
I would like to convert a list to matrix. This can be easily achieved via do.call. The only problem is each element of the list has different length, which causes the recycling of values. How can I have NA instead of recycled values ? m <- list() m[["A"]] <- 1 m[["B"]] <- 2:3 do.call(rbind, m) [,1] [,2] A 1 1 B 2 3 [[alternative HTML version deleted]]
2016 Jul 16
2
Moving Maildir folders
...> If you want a subtree structure in maildir you must create each folder at the > first level > > in the new user you must have something like: > > .olduser.INBOX > .olduser.Sent > .olduser.Trash > .olduser.Drafts > .olduser.whatever > > Each directory with tmp, newm cur subdirs only (ad dovecot files, of course) > > > > -- > > > Ciao, > luigi > > / > +--[Luigi Rosa]-- > \ > > Understanding is a three-edged sword. > --Kosh, "Deathwalker" OK, I believe I've done as you suggested, but still nothing...
2016 Jul 16
2
Moving Maildir folders
Our office had a user leave. Another user is taking over her duties and needs reference to the departing user's email. I've copied that entire departed user's Maildir structure to the current user: mv olduser/Maildir/.* curuser/Maildir/.olduser I did change permission and ownership on curuser/Maildir/.olduser to be the target user. I did not bring over the olduser/Maildir/dovecot*
2007 Jan 03
3
Asterisk Core Dump in app_queue - Anyone seen?
...cfg = (struct ast_config *) 0x81aca30 cat = 0x81507e0 "mcao_QMain" tmp = 0x6d6f7250 <Address 0x6d6f7250 out of bounds> var = (struct ast_variable *) 0x811e340 prev = (struct member *) 0x8101b79 cur = (struct member *) 0x2854554f newm = (struct member *) 0x0 new = 0 general_val = 0x2854554f <Address 0x2854554f out of bounds> interface = '\0' <repeats 79 times> penalty = 900 #1 0xb778a7a8 in reload () at app_queue.c:4012 No locals. #2 0x0805bb44 in ast_module_reload (name=0x81...
2016 Jul 16
3
Moving Maildir folders
...irst level > >> > >> in the new user you must have something like: > >> > >> .olduser.INBOX > >> .olduser.Sent > >> .olduser.Trash > >> .olduser.Drafts > >> .olduser.whatever > >> > >> Each directory with tmp, newm cur subdirs only (ad dovecot files, of > >course) > >> > >> > >> > >> -- > >> > >> > >> Ciao, > >> luigi > >> > >> / > >> +--[Luigi Rosa]-- > >> \ > >> > >> Understan...
2010 Jan 15
2
How to delete matrix rows based on NA frequency?
Hi all, I would like to remove rows from a matrix, based on the frequency of missing values. If there are more than 10 % missing values, the row should be deleted. I use the following to calculate the frequencies, thereby getting a new matrix with the frequencies: freqNA=rowMeans(is.na(exprdata)) But is there a shorter way to remove the rows based on "(1-freqNA)>0.1"