search for: headerlin

Displaying 9 results from an estimated 9 matches for "headerlin".

Did you mean: headerline
2005 Oct 20
4
read.fwf doesn't work with header = TRUE (PR#8226)
...work properly since: 1/ the original header is printed on the console and not in FILE; 2/ the different 'parts' of the header should be separated with tabs to work with the call to read.table. Here is a suggested fix for src/library/utils/R/read.fwf.R: 38c38,40 < cat(FILE, headerline, "\n") --- > headerline <- unlist(strsplit(headerline, " {1,}")) > headerline <- paste(headerline, collapse = "\t") > cat(file = FILE, headerline, "\n") PS: my R is not updated by read.fwf.R does not seem to have been...
2016 Sep 08
2
sieve - find in header
On 08-09-16 20:51, @lbutlr wrote: > On Tue Sep 06 2016 07:25:38 Hajo Locke <hajo.locke at gmx.de> said >> How to solve this case and find a string in arbitrary/unknown headerline? > > You?ll have to create multiple sieves covering the possible headers. > Maybe when you tell what you're trying to achieve, we can give you better advice. Almost no one is looking for random strings in random headers, since headers are (somewhat) structured data. Could you shar...
2016 Mar 21
3
sieve - editheader - edit in place
Hello, i do some tests with sieve editheader extensions. deleteheader and addheader are working, but i noticed that new headerlines are always prepended to current header. So new lines can be found always on top. I am looking for a possibility to edit a headerline in place, without moving the new line to top of stack(replaceheader?). It is not looking good if a Subject-Line suddenly moves to top of header. Is there a poss...
2016 Sep 06
3
sieve - find in header
Hello list, have a problem with sieve script. I want to perform an action if an arbitrary headerline contains a defined string. I tried with regex: if header :regex [".*"] ["searchstri.*"] { fileinto "junk"; } This is not working because regex is only used in 2nd argument ["searchstri.*"] In 1st argument [".*"] no regex is used, sieve expe...
2005 Nov 05
0
read.fwf; bug reports 8226 & 8236 (PR#8284)
...ied the last of Emmanuel Paradis' proposed fixes; this didn't quite work --- an extra ``sep'' (tab) gets tacked on at the end of the line being catted and makes read.table think that there is one more field than there actually are. So I modified the fix to: if (header) { headerline <- readLines(file, n = 1) head.last <- cumsum(widths) head.first <- head.last - widths + 1 headerline <- substring(headerline,head.first,head.last)[!drop] headerline <- paste(headerline,collapse=sep) cat(file = FILE, headerline, "\n...
2012 Nov 08
1
Dataframe,Matrix,Table
Hi for all............... I am having one Dataset. Mode of the dataset is dataframe. I need to add headerline,row and column line. How to do this...Help me to do this.... Thanks Kokila -- View this message in context: http://r.789695.n4.nabble.com/Dataframe-Matrix-Table-tp4648843.html Sent from the R help mailing list archive at Nabble.com.
2007 Dec 03
2
procmail/formail --> Maildir
Hello List, i switched mailformat from mbox to maildir. Now i have a little problem with procmail/formail and headermanipulation of mails. Here an example: 0 * ^From.*gmx.de | (formail -t -I"procmail: gmx.de") >> /var/spool/mail/xxxxxx So, i can add some different headerlines for later evaluation and the result is attached to inbox. Now i have the problem that i don't know name of targetfile, cause it is unique for every mail if maildir is used. I did not found a Option or other workaround to solve this case. I know, it is not a dovecot problem but i hope somebody...
2016 Jul 30
2
IMAP flags and dovecot-keywords not working as expected
I've converted most of our users from Outlook to Thunderbird. One important feature of Thunderbird is that it pays attention to the IMAP non-standard message flags via the 'tags' feature (see http://wiki2.dovecot.org/MailboxFormat/Maildir). This is important because 2 users make extensive use of Outlook categories (Tags, in Thunderbird). I found that when I set a message to the 1st
2005 Dec 06
3
reading in data with variable length
I have very large csv files (up to 1GB each of ASCII text). I'd like to be able to read them directly in to R. The problem I am having is with the variable length of the data in each record. Here's a (simplified) example: $ cat foo.csv Name,Start Month,Data Foo,10,-0.5615,2.3065,0.1589,-0.3649,1.5955