[R] Fw: How to read a file saved in Rstudio

2019-09-11 Thread Faheem Jan via R-help
Subject: How to read a result  saved in Rstudio HI, i run the simulation result in other computer with high speed computer ,i save the result in the rda file. know i want to open this file rda file  in my laptop, the file loaded in my laptop , i got the error like this  load("C:/Users/Khan/Do

Re: [R] about paired or unpaired t.test or wilcox.test in R

2019-09-11 Thread David Winsemius
On 9/11/19 1:14 PM, Bogdan Tanasa wrote: Dear all, if would be great if you could please advise on the use of PAIRED or UNPAIRED T.TEST or WILCOX.TEST in R : let's say shall we have 2 samples : -- CONTROL : where we measure the expression of 100 genes G1 ... G100 in one million cells C1 ...C

[R] about paired or unpaired t.test or wilcox.test in R

2019-09-11 Thread Bogdan Tanasa
Dear all, if would be great if you could please advise on the use of PAIRED or UNPAIRED T.TEST or WILCOX.TEST in R : let's say shall we have 2 samples : -- CONTROL : where we measure the expression of 100 genes G1 ... G100 in one million cells C1 ...C1mil -- TREATMENT : where we measure the exp

[R] Loading aliased file in MacOSX

2019-09-11 Thread Marc Girondot via R-help
If I try to load data from an alias file made using Cmd+Ctrl+A in finder for MacOSX, I get an error. Symbolic links are working well but sometimes, it is easier to use finder rather than terminal. Has someone a solution to help R to read the original aliased file ? Thanks Here is a reproducib

Re: [R] Calling a LAPACK subroutine from R

2019-09-11 Thread Göran Broström
Giovanni, you are trying to open a can of worms. Se recent discussions on R-pkg-devel, Writing R Extensions, and the help page for .Fortran. Best, Göran On 2019-09-10 23:44, Giovanni Petris wrote: Hello R-helpers! I am trying to call a LAPACK subroutine directly from my R code using .Fort

Re: [R] Moving 2nd column into 1st column using R

2019-09-11 Thread Martin Møller Skarbiniks Pedersen
On Tue, 10 Sep 2019 at 04:20, smart hendsome via R-help < r-help@r-project.org> wrote: > > Hi R-user, > I have a problem regarding R. How can I move my 2nd column into 1st column. For example I have data as below: > mydf <- data.frame(matrix(1:6, ncol = 2)) > mydf > X1 X2 1 4 2 5 3

Re: [R] Moving 2nd column into 1st column using R

2019-09-11 Thread PIKAL Petr
Or maybe use stack stack(mydf) Cheers Petr > -Original Message- > From: R-help On Behalf Of Jim Lemon > Sent: Tuesday, September 10, 2019 6:34 AM > To: smart hendsome ; r-help mailing list h...@r-project.org> > Subject: Re: [R] Moving 2nd column into 1st column using R > > Hi Zuhri, >