[R] to check if a character string is in a group of character strings

2013-01-23 Thread Yuan, Rebecca
Hello,

How can I judge if a string is in a group of string? For example, I would like 
to have

if (subpool in pool){
}else{
}

Where

 pool = c(s1,s2)
 subpool = c(s1)

How can I write the subpool in pool right in R?

Thanks very much!

Cheers,

Rebecca


--
This message, and any attachments, is for the intended r...{{dropped:5}}

__
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.


Re: [R] to check if a character string is in a group of character strings

2013-01-23 Thread Duncan Murdoch

On 13-01-23 11:14 AM, Yuan, Rebecca wrote:

Hello,

How can I judge if a string is in a group of string? For example, I would like 
to have

if (subpool in pool){
}else{
}


if (subpool %in% pool)

Duncan Murdoch



Where


pool = c(s1,s2)
subpool = c(s1)


How can I write the subpool in pool right in R?

Thanks very much!

Cheers,

Rebecca


--
This message, and any attachments, is for the intended r...{{dropped:5}}

__
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.



__
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.


Re: [R] to check if a character string is in a group of character strings

2013-01-23 Thread Jose Iparraguirre
Not sure what you want this for, but work along the following:

 pool = c(s1,s2)
 subpool = c(s1)

 ifelse(pool==subpool,1,0)
[1] 1 0

Notice:
 pool2 = c(s2,s1)
 ifelse(pool2==subpool,1,0)
[1] 0 1

Etc.

Hope this helps.

José


José Iparraguirre
Chief Economist
Age UK



-Original Message-
From: r-help-boun...@r-project.org [mailto:r-help-boun...@r-project.org] On 
Behalf Of Yuan, Rebecca
Sent: 23 January 2013 16:15
To: R help
Subject: [R] to check if a character string is in a group of character strings

Hello,

How can I judge if a string is in a group of string? For example, I would like 
to have

if (subpool in pool){
}else{
}

Where

 pool = c(s1,s2)
 subpool = c(s1)

How can I write the subpool in pool right in R?

Thanks very much!

Cheers,

Rebecca


--
This message, and any attachments, is for the intended r...{{dropped:5}}

__
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

Wrap Up and Run 10k is back! 

Also, new for 2013 – 2km intergenerational walks at selected venues. So recruit 
a buddy, dust off the trainers and beat the winter blues by 
signing up now:

http://www.ageuk.org.uk/10k

 Milton Keynes | Oxford | Sheffield | Crystal Palace | Exeter | 
Harewood House, Leeds | 
 Tatton Park, Cheshire | Southampton | Coventry



Age UK Improving later life

http://www.ageuk.org.uk


 

---
Age UK is a registered charity and company limited by guarantee, (registered 
charity number 1128267, registered company number 6825798). 
Registered office: Tavis House, 1-6 Tavistock Square, London WC1H 9NA.

For the purposes of promoting Age UK Insurance, Age UK is an Appointed 
Representative of Age UK Enterprises Limited, Age UK is an Introducer 
Appointed Representative of JLT Benefit Solutions Limited and Simplyhealth 
Access for the purposes of introducing potential annuity and health 
cash plans customers respectively.  Age UK Enterprises Limited, JLT Benefit 
Solutions Limited and Simplyhealth Access are all authorised and 
regulated by the Financial Services Authority. 
--

This email and any files transmitted with it are confidential and intended 
solely for the use of the individual or entity to whom they are 
addressed. If you receive a message in error, please advise the sender and 
delete immediately.

Except where this email is sent in the usual course of our business, any 
opinions expressed in this email are those of the author and do not 
necessarily reflect the opinions of Age UK or its subsidiaries and associated 
companies. Age UK monitors all e-mail transmissions passing 
through its network and may block or modify mails which are deemed to be 
unsuitable.

Age Concern England (charity number 261794) and Help the Aged (charity number 
272786) and their trading and other associated companies merged 
on 1st April 2009.  Together they have formed the Age UK Group, dedicated to 
improving the lives of people in later life.  The three national 
Age Concerns in Scotland, Northern Ireland and Wales have also merged with Help 
the Aged in these nations to form three registered charities: 
Age Scotland, Age NI, Age Cymru.










__
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.


Re: [R] to check if a character string is in a group of character strings

2013-01-23 Thread Yuan, Rebecca
Hello Duncan,

Thanks for this!

This works!

Best,

Rebecca

-Original Message-
From: Duncan Murdoch [mailto:murdoch.dun...@gmail.com] 
Sent: Wednesday, January 23, 2013 11:23 AM
To: Yuan, Rebecca
Cc: R help
Subject: Re: [R] to check if a character string is in a group of character 
strings

On 13-01-23 11:14 AM, Yuan, Rebecca wrote:
 Hello,

 How can I judge if a string is in a group of string? For example, I would 
 like to have

 if (subpool in pool){
 }else{
 }

if (subpool %in% pool)

Duncan Murdoch


 Where

 pool = c(s1,s2)
 subpool = c(s1)

 How can I write the subpool in pool right in R?

 Thanks very much!

 Cheers,

 Rebecca


 --
 This message, and any attachments, is for the intended...{{dropped:12}}

__
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.


Re: [R] to check if a character string is in a group of character strings

2013-01-23 Thread ONKELINX, Thierry
I think you want %in%

subpool %in% pool
pool %in% subpool



ir. Thierry Onkelinx
Instituut voor natuur- en bosonderzoek / Research Institute for Nature and 
Forest
team Biometrie  Kwaliteitszorg / team Biometrics  Quality Assurance
Kliniekstraat 25
1070 Anderlecht
Belgium
+ 32 2 525 02 51
+ 32 54 43 61 85
thierry.onkel...@inbo.be
www.inbo.be

To call in the statistician after the experiment is done may be no more than 
asking him to perform a post-mortem examination: he may be able to say what the 
experiment died of.
~ Sir Ronald Aylmer Fisher

The plural of anecdote is not data.
~ Roger Brinner

The combination of some data and an aching desire for an answer does not ensure 
that a reasonable answer can be extracted from a given body of data.
~ John Tukey


-Oorspronkelijk bericht-
Van: r-help-boun...@r-project.org [mailto:r-help-boun...@r-project.org] Namens 
Yuan, Rebecca
Verzonden: woensdag 23 januari 2013 17:15
Aan: R help
Onderwerp: [R] to check if a character string is in a group of character strings

Hello,

How can I judge if a string is in a group of string? For example, I would like 
to have

if (subpool in pool){
}else{
}

Where

 pool = c(s1,s2)
 subpool = c(s1)

How can I write the subpool in pool right in R?

Thanks very much!

Cheers,

Rebecca


--
This message, and any attachments, is for the intended r...{{dropped:5}}

__
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.
* * * * * * * * * * * * * D I S C L A I M E R * * * * * * * * * * * * *
Dit bericht en eventuele bijlagen geven enkel de visie van de schrijver weer en 
binden het INBO onder geen enkel beding, zolang dit bericht niet bevestigd is 
door een geldig ondertekend document.
The views expressed in this message and any annex are purely those of the 
writer and may not be regarded as stating an official position of INBO, as long 
as the message is not confirmed by a duly signed document.

__
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.