On 03/03/2019 3:44 a.m., Ivan Krylov wrote:
Hi Darren,
On Sat, 2 Mar 2019 22:27:55 +
Darren Danyluk wrote:
It sounds like she is working with the very basics of this software,
and her task is to write the code which would result in the
extraction of "odd" data from a dataset of restaurant
Hi Darren,
On Sat, 2 Mar 2019 22:27:55 +
Darren Danyluk wrote:
> It sounds like she is working with the very basics of this software,
> and her task is to write the code which would result in the
> extraction of "odd" data from a dataset of restaurant sales.
Not a native English speaker her
Hi Darren,
You're probably looking for the %% (remainder) operator:
x<-1:10
# get odd numbers
x[as.logical(x%%2)]
# get even numbers
x[!(x%%2)]
Jim
On Sun, Mar 3, 2019 at 4:10 PM Darren Danyluk wrote:
>
> Hello,
>
> I found this email when looking for some help with R Studio. It's actually
>
Hello,
I found this email when looking for some help with R Studio. It's actually my
daughter who is looking for help.
It sounds like she is working with the very basics of this software, and her
task is to write the code which would result in the extraction of "odd" data
from a dataset of re
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
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 13
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, . (k
7 matches
Mail list logo