[R] Selecting numbers not divisible by 3

2014-03-27 Thread Prabhakar Ghorpade
Hi,
here's my code

X - 1:100

I want to select number divisible by 3 out of them how can I select it?

( I tried following
X - 1:100
DIV - Y -  X/3

But I am getting whole number and number with fractions. WHole intgers are
my number of interest from original X. How can I traceback to number
divisbile by 3. ?)

Thanks

Kind Regards,
Prabhakar



-- 
Dr.Ghorpade Prabhakar B.
Ph.D. Scholar ( Animal Biochemistry)
Indian Veterinary Research Institute.
India

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


[R] Selecting numbers not divisible by 3

2014-03-27 Thread Prabhakar Ghorpade
Hi,
here's my code

X - 1:100

I want to select number divisible by 3 out of them how can I select it?

( I tried following
X - 1:100
DIV - Y -  X/3

But I am getting whole number and number with fractions. WHole intgers are
my number of interest from original X. How can I traceback to number
divisbile by 3. ?)

Thanks

Kind Regards,
Prabhakar



-- 
Dr.Ghorpade Prabhakar B.
Ph.D. Scholar ( Animal Biochemistry)
Indian Veterinary Research Institute.
India



-- 
Dr.Ghorpade Prabhakar B.
Ph.D. Scholar ( Animal Biochemistry)
Indian Veterinary Research Institute.
India

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


Re: [R] Selecting numbers not divisible by 3

2014-03-27 Thread Prabhakar Ghorpade
Pascal, Jorge, Berend, Pikal and Rui. Thanks all it helps.


On Thu, Mar 27, 2014 at 8:18 PM, Prabhakar Ghorpade 
dr.prabhaka...@gmail.com wrote:

 Hi,
 How do I find help on %%

 Regards,
 Prabhakar


 On Thu, Mar 27, 2014 at 4:56 PM, Jorge I Velez 
 jorgeivanve...@gmail.comwrote:

 Hi there,

 Try

 X[X %% 3 == 0]

 HTH,
 Jorge.-


 On Thu, Mar 27, 2014 at 6:46 PM, Prabhakar Ghorpade 
 dr.prabhaka...@gmail.com wrote:

 Hi,
 here's my code

 X - 1:100

 I want to select number divisible by 3 out of them how can I select it?

 ( I tried following
 X - 1:100
 DIV - Y -  X/3

 But I am getting whole number and number with fractions. WHole intgers
 are
 my number of interest from original X. How can I traceback to number
 divisbile by 3. ?)

 Thanks

 Kind Regards,
 Prabhakar



 --
 Dr.Ghorpade Prabhakar B.
 Ph.D. Scholar ( Animal Biochemistry)
 Indian Veterinary Research Institute.
 India

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





 --
 Dr.Ghorpade Prabhakar B.
 Ph.D. Scholar ( Animal Biochemistry)
 Indian Veterinary Research Institute.
 India




-- 
Dr.Ghorpade Prabhakar B.
Ph.D. Scholar ( Animal Biochemistry)
Indian Veterinary Research Institute.
India

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


Re: [R] Selecting numbers not divisible by 3

2014-03-27 Thread Prabhakar Ghorpade
Hi,
How do I find help on %%

Regards,
Prabhakar


On Thu, Mar 27, 2014 at 4:56 PM, Jorge I Velez jorgeivanve...@gmail.comwrote:

 Hi there,

 Try

 X[X %% 3 == 0]

 HTH,
 Jorge.-


 On Thu, Mar 27, 2014 at 6:46 PM, Prabhakar Ghorpade 
 dr.prabhaka...@gmail.com wrote:

 Hi,
 here's my code

 X - 1:100

 I want to select number divisible by 3 out of them how can I select it?

 ( I tried following
 X - 1:100
 DIV - Y -  X/3

 But I am getting whole number and number with fractions. WHole intgers are
 my number of interest from original X. How can I traceback to number
 divisbile by 3. ?)

 Thanks

 Kind Regards,
 Prabhakar



 --
 Dr.Ghorpade Prabhakar B.
 Ph.D. Scholar ( Animal Biochemistry)
 Indian Veterinary Research Institute.
 India

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





-- 
Dr.Ghorpade Prabhakar B.
Ph.D. Scholar ( Animal Biochemistry)
Indian Veterinary Research Institute.
India

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


[R] Finding max number in R

2014-03-27 Thread Prabhakar Ghorpade
Hello,
 If I have x-c(5,9,8,3,4,5,6,7,)
and y -(a, b,c, d,e,f, g,h)

and D - data.frame(x,y)



I did this max(x)

and My expectede anwer is b.
How do I select element in y which correspond to maximum number in x?

thanks.

regards,
Prabhakar

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


[R] going backward in code

2014-03-27 Thread Prabhakar Ghorpade
Hi,
 when typing code I get like this
 x -(1,2,
+
+
+


Can I delete + and comma after 2 and go back to end of comma as x -c(1,2)


Thanks.
Prabhakar

-- 
Dr.Ghorpade Prabhakar B.
Ph.D. Scholar ( Animal Biochemistry)
Indian Veterinary Research Institute.
India

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