[R] Remove Even Number from A Vector

2008-07-31 Thread Gundala Viswanath
Dear all,

How can I remove the even number from the following vector

> x
[1]   4   5   6   8  17  20  21  22  23  25  26  31  35  36  38  40  41  42  43
[20]  44  50  74  75  82  84  89  90  91  95  96  97 100 101 102 118 119 121 122
[39] 123 135 136 157 158

yielding

5, 17, 21, 23, 25, . (keep odd number).

- Gundala Viswanath
Jakarta - Indonesia

__
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] Remove Even Number from A Vector

2008-07-31 Thread Paul Roebuck
On Fri, 1 Aug 2008, Gundala Viswanath wrote:

> How can I remove the even number from the following vector
>
> > x
> [1]   4   5   6   8  17  20  21  22  23  25  26  31  35  36  38  40  41  42  
> 43
> [20]  44  50  74  75  82  84  89  90  91  95  96  97 100 101 102 118 119 121 
> 122
> [39] 123 135 136 157 158
>
> yielding
>
> 5, 17, 21, 23, 25, . (keep odd number).
>

x[which(x %% 2 != 0)]

--
SIGSIG -- signature too long (core dumped)

__
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] Remove Even Number from A Vector

2008-07-31 Thread Ferry
x[!(x %% 2 == 0)]

On Thu, Jul 31, 2008 at 10:01 PM, Gundala Viswanath <[EMAIL PROTECTED]>wrote:

> Dear all,
>
> How can I remove the even number from the following vector
>
> > x
> [1]   4   5   6   8  17  20  21  22  23  25  26  31  35  36  38  40  41  42
>  43
> [20]  44  50  74  75  82  84  89  90  91  95  96  97 100 101 102 118 119
> 121 122
> [39] 123 135 136 157 158
>
> yielding
>
> 5, 17, 21, 23, 25, . (keep odd number).
>
> - Gundala Viswanath
> Jakarta - Indonesia
>
> __
> 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.
>

[[alternative HTML version deleted]]

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