Skip to content

Problems with intersections between two charcter vectors

3 messages · snow, jim holtman, Berend Hasselman

#
the vectors in you first example look like a long character string since I only see quote marks at the beginning and end and notbon the individual objects, but it is hard to tell since it appears to be in HTML.

Sent from my iPad
On Dec 4, 2013, at 1:52, "snow" <7146781 at qq.com> wrote:

            
#
On 04-12-2013, at 07:52, snow <7146781 at qq.com> wrote:

            
What is displayed in Apple Mail is a mess since you posted in html.

It seems that some of your double quotes ? have been converted somewhere to typographic double quotes (or however they should be called).
Some of your output is weird: a[1] would display ?CREB2? only and not what you show in your mail.

Doing it like this using proper ascii double quotes:

a<-c("CREB2" ,"ELK1" ,"ELK4" ,"MYC" ,"NR4A1" ,"FOS" ,"SRF" ,"TAU" ,"STMN1" ,"CPLA2")
b<-c("CAMK2","CPKC","CBL","STAT5A","FAK","ABL1","JUN","ELK1","MYC")

intersect(a,b)

displays:

[1] "ELK1" ?MYC"

which is what you expected?

Berend