search for: delimet

Displaying 20 results from an estimated 29 matches for "delimet".

Did you mean: delimit
2004 Jun 08
2
(no subject)
Hi!! I am a new user of R (just trying to analysis microarrays with some packages from the bioconductor project). I would like to import a text-delimeted file containing 20 columns and 22200 rows. I have tried read.table; scan(file="") <matrix(scan("file", n=20*200,20,200, byrow=TRUE)); Doesn't matter what I try I got the next message: error in file (file "r"): unable to open connection in addition warning...
2007 Aug 16
6
definitions v. plugins
...delimiter as requested (defaults to a space). this seems to work great at managing all sorts of unix and mac config files (sshd_config, hostconfig on macs). right now it''s written as a definition, but it feels very hacky: """ define ensure_key_value($file, $key, $value, $delimeter = " ") { # append line if "$key" not in "$file" exec { "echo ''$key$delimeter$value'' >> $file": unless => "grep -qe ''^$key[[:space:]]*$delimeter'' -- $file", path => "/bin:/usr/bin&qu...
2006 Jan 14
2
20060114 snapshot compilation warnings
Timo, I've noticed a couple of extra compilation errors in last night's snapshot compared to the snapshot I downloaded on Tuesday, probably due to the int -> bool change :- (gcc 3.3.2 on Solaris 8) mbox-sync.c: In function `mbox_sync': mbox-sync.c:1568: warning: comparison is always false due to limited range of data type index-search.c: In function `search_index_arg':
2006 Jan 20
4
read.table with ":" in column names (PR#8511)
Full_Name: emiel ver loren Version: 2.2.0 OS: Windows XP Submission from: (NULL) (145.117.31.248) Dear R-community and developers, I have been trying to read in a tab delimeted file where the column names and the row names are of the form "GO:0000051" (gene ontology IDs). When using: > gomat<-read.table("test.txt") > colnames(gomat)[1] [1] "GO.0000051" > rownames(gomat)[1] [1] "GO:0000002" Which means that ":&qu...
2002 Oct 11
4
read.table( ... comment.char="#") truncated my data
...ot; " in read.table ? Thanks, Ren On Tue, 19 Feb 2002, Steve Cassidy wrote: > I've just discovered the recent addition of the comment.char arg to scan, a > useful feature no doubt but the default value of # rather than "" breaks my > code which looks for # as a delimeter in a file and provides a messy > incompatability with earlier versions of R and with Splus. > > Is there any chance that this default could be changed to ""? It already has been. The NEWS for R-patched / R-devel says: o The default has been changed to scan(comment.char...
2006 Feb 07
1
acts_as_taggable plugin: more delimiters?
I''m going through the Recipes book and got to the Tagging chapter, wanted to give it a shot. According to the text, tag_with takes a space-delimited list of tags. Is there a way to use different delimeters, such as commas or single quotes? Some tags can potentially have more than one word, such as ''ice cream''. I''d like to be able to use those without doing something funky like ice_cream or IceCream. Pat
2002 Feb 19
1
scan(...comment.char="#") breaks my code
I've just discovered the recent addition of the comment.char arg to scan, a useful feature no doubt but the default value of # rather than "" breaks my code which looks for # as a delimeter in a file and provides a messy incompatability with earlier versions of R and with Splus. Is there any chance that this default could be changed to ""? -- Steve Cassidy........Computing, Macquarie University, Sydney, Australia ..............<URL: http://www.ics.mq.edu.au/~cassi...
2003 May 25
0
surprising behaviour of "bgroup": sets all in greek letters (PR#3099)
Let me summarize the bug reported by Ulf Martin on R-help with the same subject line. The code plot(1:10) text(1, 9, expression(F == bgroup("{", x, ""))) results in greek letters, which is not expected here. That happens if the user tries to set only a left delimeter, the same with: text(2, 8, expression(F == bgroup("{", x, "."))) or text(3, 7, expression(F == bgroup(".", x, "}"))) but it works if delimeters are specified, as in: text(4, 6, expression(F == bgroup("{", x, ")"))) I don&...
2006 Mar 11
2
how to create analog stripchart plots of x vs t (t=mm/dd/yyyy hh:mm:ss)
Hello r-experts, I sure could us a little help. I have an ever updating text file with timestamped data in it. I can reformat in anyway I want if need be but currently I have chosen to make columns of date, time and measuresed value (comma delimeted and with the dates and times in quotes to interpret them as strings). Here is a small section of my text data file: "3/11/2006","15:09",0.014652 "3/11/2006","15:08",0.014652 "3/11/2006","15:06",0.000000 ...etc... I am trying to make a...
2009 Jun 17
6
script help
Hi ? I have a file. list.txt (two columns) ? column1??? column2 name??????? address ? ? I need to put in the letter file letter.txt eg: ? Dear: Chloe Address: CA ? Can I use this ? for i `cat list.txt` | sed 's/Chloe/$i.1; /CA/$i.2/g' $i.letter.txt ? Thank you for your help ? ? ? ? ? __________________________________________________________________ Looking for the perfect gift?
2016 Aug 09
4
ssh & ksh question
I need to run a report, source file on system 1, on system 2. I'd like to do this in one script, not have a second script to run it. Now cat script | ssh system2 works fine. But no matter what I've tried, it gags on ssh system2 <<EOF blah, blah EOF. Mostly, I have a multiline awk script in the script, with \ at the end of each line... *but* I think it's seeing "\n" as
2010 Apr 23
2
Ogg Index A-mod
...coefficient of 64 > and a Golomb-Rice parameter of 16. First, 2496 is divided by 64, > giving 39. We > subtract 1, then divide 38 by 16, yielding a quotient of 2 and > remainder of 6. > The quotient and remainder are coded as 110 0110. This is a prefix > code, so no additional delimeters are needed to separate values. Am I right to assume that the binary value of the remainder is encoded in a fixed width field of log2(Golomb_Rice_parameter)? e.g. log2(16)=4 bits in this example? > Note that it is not always safe to > round granpos down after division: if rounding down...
2008 Sep 04
0
[LLVMdev] Intel asm
...T&T syntax. Apparently the project ran into trouble with name collisions when using Intel syntax (an example of a variable named "dword" was cited). I just tried dumping Intel syntax asm and assembling it with gas. It doesn't particularly like what llvm is putting out (comment delimeters are wrong, etc.). Is the Intel AsmPrinter meant to produce asm that is understood by gas or is it only meant to satisfy NASM, etc.? -Dave
2016 Aug 09
0
ssh & ksh question
...; > Mostly, I have a multiline awk script in the script, with \ at the end of > each line You are probably overlooking that in bash, "here documents" are subject to expansion according rules documented in the bash man page, unless you quote the word you use as the here document delimeter. That is, try: ssh system2 <<"EOF" blah, blah EOF
2016 Aug 09
1
ssh & ksh question [RESOLVED]
...ve a multiline awk script in the script, with \ at the end >> of each line > > You are probably overlooking that in bash, "here documents" are subject > to expansion according rules documented in the bash man page, unless you > quote the word you use as the here document delimeter. > > That is, try: > > ssh system2 <<"EOF" > blah, blah > EOF Actually, the script itself is ksh. However, finally getting to email with my manager, he just did it the simpler way, with a separate script to run it. And the reason I didn't realize that his sc...
2008 Feb 11
3
Plus sign in usernames: user+domain.com?
I am migrating from a cpanel server that has usernames in the format "user+domain.com". On the new server I am using the format "user.domain.com" and it all works perfectly with dovecot / postfix. Is there any way that I can allow users to login either with the "." or "+" delimiter? Thanks in advance for any suggestions!
2005 Aug 18
1
1.0alpha1, multiple lock methods?
Hi, I just upgraded from test80 to 1.0alpha1. I wanted to try something new on the lock_method, so I set: lock_method = fcntl, dotlock I got syslog complaints like: IMAP(username): Unknown lock_method: fcntl, dotlock Can one specify multiple file locking mechanisms? If so, what is the syntax (and can the syntax be shown in the comments of the .conf file)? Jeff Earickson Colby College
2009 Apr 24
1
Hangup Detection After Originate (Asterisk Manager API)
I have written an asterisk manager client which creates an outbound call using Asterisk manager API's Originate action. when the call is connected I run 3 applications on it. 1)read a dtmf digit from user 2)A customized application which I have written,(It plays something to user) 3)Hangup If user hangs up while app 2(see above) is executing I get a 'Event Hangup' from asterisk in my
2010 Nov 30
1
LMTP with address extension
hallo, I have a problem configuring lmtp service. I use postfix+dovcot2.0.7 with "recipient_delimeter = -". If i switch to dovecot-lda, all works fine, but going to lmtp service it dosn't. Maybe it works with default delimeter "+", but i plan to move from qmail system with many existent mailboxes. Enclosed some configuration/logentries. Can you give me a hint ? Best Wishe...
2010 Mar 03
1
asterisk SIP, SIPAddHeader() and Cisco GED-125
Greetings: I'm in the situation where I'm trying to splash information picked off by an asterisk IVR into a Cisco call center environment. I'm under the impression that the ONLY way to do this is to setup socket connections with the Cisco "voice processor", or CVP, and send packets corresponding to GED-125. Cisco has a detailed 100+-page document detailing the internals of