Hi Yannick,

yannick misteli wrote:
> I have a vector x with certain ID numbers in it and want to create a
> subset from my dataset Y with this vector i.e extract only the data with
> the given IDs from vector x.
> 
> example:
> x
> [1] 10066924 10207314 10257322 10334594 10348247
> 
> and now I want to create subset of dataset "assignee" with
> assignee$pdpass ==  x

Try this:

assignee.1<-subset(assignee, pdpass %in% x)

Kind regards,
Kimmo

______________________________________________
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.

Reply via email to