search for: colons

Displaying 20 results from an estimated 1403 matches for "colons".

Did you mean: colon
2011 Sep 20
3
adding labels to x,y points
Hi, I am new to R. I have a matrix that I have assigned to the object ?colon?. > colon<-read.table("c:\\alon.txt",header=T,row.names=1) attach(colon) names(colon) The dimenstions are 2000 62. Each of the 62 columns (titled norm1, norm2, norm3, etc) has 2000 different numbers (?continuous? values) within it. I have also assigned a name for each of the 2000 rows of the
2023 Nov 05
3
strptime with +03:00 zone designator
...8T13:35:00+03:00 The documentation for strptime says that %z expects an offset like 0300. I don't see any way in the documentation to get it to accept +hh:mm with a colon separator, and everything I tried gave me NA as the answer. Section 4.2.5.1 of ISO 8601:2004(E) allows both the absence of colons in +hh[mm] (basic format) and the presence of colons in +hh:mm (extended format). Again in section 4.2.5.2 where a zone offset is combined with a time of day: if you have hh:mm:ss you are using extended format and the offset MUST have a colon; if you have hhmmss you are using basic format and the o...
2007 May 04
3
Error in if (!length(fname) || !any(fname == zname)) { :
Dear R users, I tried to fit a cox proportional hazard model to get estimation of stratified survival probability. my R code is as follows: cph(Surv(time.sur, status.sur)~ strat(colon[,13])+colon[,18] +colon[,20]+colon[,9], surv=TRUE) Error in if (!length(fname) || !any(fname == zname)) { : missing value where TRUE/FALSE needed Here colon[,13] is the one that I want to stratify and the
2013 Jan 23
3
footnote:id, colons and jquery
I just received a [bug report] for Python-Markdown complaining that colons are used in the ids of footnotes. For reference, we [output] the same format at PHP Markdown Extra. The general complaint is that the colon in the id attribute (`id="fnref:1"`) causes jquery to choke when referencing that id from javascript because jquery uses colons to indicate pseudo el...
2023 Nov 06
1
strptime with +03:00 zone designator
...ation for strptime says that %z expects > an offset like 0300. I don't see any way in the documentation > to get it to accept +hh:mm with a colon separator, and > everything I tried gave me NA as the answer. > > Section 4.2.5.1 of ISO 8601:2004(E) allows both the > absence of colons in +hh[mm] (basic format) and the > presence of colons in +hh:mm (extended format). > Again in section 4.2.5.2 where a zone offset is combined > with a time of day: if you have hh:mm:ss you are using > extended format and the offset MUST have a colon; if > you have hhmmss you are usi...
2010 May 23
3
"order" issue
Hi everybody, this is a real dummy thing. I sorted a matrix based on a given column, and what I get is right, until it comes to columns of negative and positive values; than, "order" orders everything from max to min in the negative values, and then AGAIN from max to min in the positive values!!! Why isn't everything order from max to min, and that's it? Thank you!!! Attached
2023 Nov 06
1
strptime with +03:00 zone designator
...that %z expects >> an offset like 0300. I don't see any way in the documentation >> to get it to accept +hh:mm with a colon separator, and >> everything I tried gave me NA as the answer. >> >> Section 4.2.5.1 of ISO 8601:2004(E) allows both the >> absence of colons in +hh[mm] (basic format) and the >> presence of colons in +hh:mm (extended format). >> Again in section 4.2.5.2 where a zone offset is combined >> with a time of day: if you have hh:mm:ss you are using >> extended format and the offset MUST have a colon; if >> you hav...
2023 Nov 06
1
strptime with +03:00 zone designator
...> an offset like 0300. I don't see any way in the documentation >>> to get it to accept +hh:mm with a colon separator, and >>> everything I tried gave me NA as the answer. >>> >>> Section 4.2.5.1 of ISO 8601:2004(E) allows both the >>> absence of colons in +hh[mm] (basic format) and the >>> presence of colons in +hh:mm (extended format). >>> Again in section 4.2.5.2 where a zone offset is combined >>> with a time of day: if you have hh:mm:ss you are using >>> extended format and the offset MUST have a colon; if...
2008 May 12
1
Escape characters or replace function
Hello, I need to use the ${DATETIME} macro inside the filename saved by Record, but the colons (':') used in the time interfere with the command (everything after the colon is interpreted as the format I wish to save to): My command is: Record(/path/to/voicemail/${EXTEN}-${DATETIME}-${UNIQUEID}:wav) I need some function to escape the colons inside DATETIME... I'm sure it'...
2008 Jun 02
3
print and read.table commands
  Hello to everyone, I am new to programming in R and am having trouble with the following two commands 1.I am running a simple 1 line script "read.table(file="C:\\Document and Settings\\All Users\\Desktop\\colon cancer.txt) and the error message I get is "Error in file (file, "r"): cannot open the connection In addition warning message In file (file, "r"):
2014 May 28
1
[Bug 953] New: Meta priority parsing is broken
https://bugzilla.netfilter.org/show_bug.cgi?id=953 Summary: Meta priority parsing is broken Product: nftables Version: unspecified Platform: x86_64 OS/Version: All Status: NEW Severity: enhancement Priority: P5 Component: nft AssignedTo: pablo at netfilter.org ReportedBy: anarey at
2001 Nov 28
1
Sharing files/directories with colons in name
...gets mangled in an unfriendly way. For directories, they either appear empty or are an infinite recursion of themselves. For files, they seem to be mangled in a similarly unfriendly way, but they can still be accessed. I tried using "mangled map = (*:* **)" to try to just get rid of the colons, but that doesn't quite seem to work. Interestingly enough, the samba log shows the following when trying to access a directory with a colon: [2001/11/28 00:42:03, 0] smbd/open.c:open_directory(1111) open_directory: unable to stat name = foo:bar. Error was No such file or directory However...
2010 Mar 04
2
Removing colon from numerical data
..."16:", "17:","18:","19:","20:") Time<-c(51:70) AveTT<-data.frame(O,D,Time) I would like to remove the colon from the "D" column's data. This is how the data is being given to me and its too big to put into excel to remove the colons. I tried the below but neither returns what i want. AveTT$D<-as.numeric(AveTT$D) AveTT$D<-substr(AveTT$D,1,nchar(AveTT$D)-1) so i want O D Time 1 1 1: 51 2 2 2: 52 3 3 3: 53 4 4 4: 54 5 5 5: 55 6 6 6: 56 7 7 7: 57 8 8 8: 58 9 9 9: 59 10...
2010 Feb 19
3
ssh feature - ignore colon in host name
sorry if this has been discussed and rejected before, I'm new to the list, I did google but didn't find anything. -- quite often I use ssh and scp within a few minutes, so I might do this... scp myfile user at host.example.com: ssh user at host.example.com it would make life a lot easier if I could type scp myfile user at host.example.com: ssh !$ or sometimes I simply copy
2001 Aug 09
1
how do I rsync files which have a colon in the name?
I can't figure out how to quote a colon in a filename that I'm trying to push so that it doesn't think everything in front of the colon is a hostname. Chris -- Chris Garrigues http://www.DeepEddy.Com/~cwg/ virCIO http://www.virCIO.Com 4314 Avenue C Austin, TX 78751-3709 +1 512 374 0500 My email address is an
2012 Jan 17
2
Reference for dataset colon (package survival)
Dear R team, dear Prof. Therneau, library(survival) data(colon) ?colon gives me only a very rudimentary source (only a name). Is there a possibility to get a reference to the clinical trial these data are taken from? Many thanks in advance. With best wishes, Matthias Gondan --
2009 Feb 25
2
A Modest Definition List Proposal (David E. Wheeler)
...ame | description | more info -----+---------+-------------------+----------------- 6 | Inset | An inset element | just one element 8 | Stories | Another element | another element : with 2 lines, without : colons on the left. 9 | Other | Another element | another element : : : with 2 lines, with : : : colons on the left. 5 | Illust. | An illustration | new line, would this do? : : and I think you : Is it parseable?...
2007 Nov 16
2
[Fwd: pxelinux doesn't suppress common prefix if nothing precedes double colon]
Just a reminder that this remains an issue up to and including the latest syslinux 3.53-pre (0x473cfc9c). Additional testing suggests that implicit hostname/IP has never worked, ever since the common prefix suppression feature was added in version 3.00. -------- Original Message -------- Subject: pxelinux doesn't suppress common prefix if nothing precedes double colon Date: Sat, 25 Aug
2010 Sep 16
2
Realtime semi-colon
Hi list, Does anyone know how to send * a semi-colon from a realtime database. I know that * uses the semi-colon as a 'seperator' - but I need to be able to use one in a command. I know I can use \; in the non-realtime configs, but this doesn't work in realtime. Cheers, Andrew Thomas Technical Services Manager DataVox Ltd Saddleworth Business Centre Huddersfield Road Delph, Oldham
2010 Jan 28
2
[LLVMdev] llc generated machine assembly code for NASM
Hello, I am new here. This is my first post. I spent about three days on trying out LLVM by developing a front-end which is able to generate LLVM IR for a subset of C language. I have not applied any optimization pass yet. On linux, it can go all the way through with the system native assemlber and linker to generate executables. And it runs. I ran into problems on Windows since the generated