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

-- TREATMENT : where we measure the expression of 100 genes G1 ... G100 in
one million cells D1 ...D1mil

when we compare the expression of these 100 genes G1 ...G100, in CONTROL vs
TREATMENT, shall we use UNPAIRED TESTS, correct ?

as the cells in CONTROL C1..C1mil are different than the cells in TREATMENT
D1..D1mil ? thanks a lot !

-- bogdan

[[alternative HTML version deleted]]

  ^^^


Rhelp is a plain text list. It is specifically for help with R coding 
difficulties, and it is specifically NOT to advice about chosing 
analysis plans. You question raises serious analysis issues regarding 
multiple comparisons and distributional assumption which I believe are 
still the subject of research. A more welcoming venue might be the 
BioConductor mailing list or CrossValitdated.com.



--

David.



__
R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see
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-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see
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] 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 expression of 100 genes G1 ... G100 in
one million cells D1 ...D1mil

when we compare the expression of these 100 genes G1 ...G100, in CONTROL vs
TREATMENT, shall we use UNPAIRED TESTS, correct ?

as the cells in CONTROL C1..C1mil are different than the cells in TREATMENT
D1..D1mil ? thanks a lot !

-- bogdan

[[alternative HTML version deleted]]

__
R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see
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] 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 reproducible example:

A <- 10
save(A, file="A.Rdata")
rm(A)

# Make hard link
system(paste("ln A.Rdata B.Rdata"))
load(file="B.Rdata")
# It works
print(A)

rm(A)

# Make symbolic link
system(paste("ln -s A.Rdata C.Rdata"))
load(file="C.Rdata")
# It works
print(A)

rm(A)

# Make an alias of the A.Rdata file in finder using Cmd+Ctrl+A; the name 
of the new file is "A.Rdata alias"

load(file="A.Rdata alias")

It failed with this error:

Error in load(file = "A.Rdata alias") :
?? mauvais num??ro magique de restauration de fichier (le fichier est 
peut ??tre corrompu) -- aucune donn??e charg??e

De plus : Warning message:
?? file ???A.Rdata alias??? has magic number 'book'
Use of save versions prior to 2 is deprecated

__
R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see
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] 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 
.Fortran(), but R cannot find the symbol name. How can I register/load the 
appropriate library?


### AR(1) Precision matrix
n <- 4L
phi <- 0.64
AB <- matrix(0, 2, n)
AB[1, ] <- c(1, rep(1 + phi^2, n-2), 1)
AB[2, -n] <- -phi
round(AB, 3)

   [,1]  [,2]  [,3] [,4]
[1,]  1.00  1.41  1.411
[2,] -0.64 -0.64 -0.640


### Cholesky factor
AB.ch <- .Fortran("dpbtrf", UPLO = 'L', N = as.integer(n),

+  KD = 1L, AB = AB, LDAB = 2L, INFO = as.integer(0))$AB
Error in .Fortran("dpbtrf", UPLO = "L", N = as.integer(n), KD = 1L, AB = AB,  :
   Fortran symbol name "dpbtrf" not in load table

sessionInfo()

R version 3.6.0 (2019-04-26)
Platform: x86_64-apple-darwin18.5.0 (64-bit)
Running under: macOS Mojave 10.14.6

Matrix products: default
BLAS/LAPACK: /usr/local/Cellar/openblas/0.3.6_1/lib/libopenblasp-r0.3.6.dylib

locale:
[1] en_US.UTF-8/en_US.UTF-8/en_US.UTF-8/C/en_US.UTF-8/en_US.UTF-8

attached base packages:
[1] stats graphics  grDevices utils datasets  methods   base

loaded via a namespace (and not attached):
[1] compiler_3.6.0 tools_3.6.0

Thank you in advance for your help!

Best,
Giovanni Petris



--
Giovanni Petris, PhD
Professor
Director of Statistics
Department of Mathematical Sciences
University of Arkansas - Fayetteville, AR 72701


__
R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see
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-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see
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] 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   6
> I want move my 2nd column become like this:
>   X11  234   5   6
> Hope anyone can help me. Many thanks.


I am not sure I understand your problem, but try:

mydf <- data.frame(matrix(1:6, ncol = 2, byrow = TRUE))

Regards
Martin

[[alternative HTML version deleted]]

__
R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see
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-es] Leer fichero de SPSS...

2019-09-11 Thread miguel.angel.rodriguez.muinos
En referencia a este tema, por si a alguien le sirviera de algo
PSPP tiene un servicio (online) de conversión de formatos de SPSS a CSV

Podéis usarlo desde aquí ->  https://pspp.benpfaff.org/



Un Saludo,
--
Miguel Ángel Rodríguez Muíños
Dirección Xeral de Saúde Pública
Consellería de Sanidade
Xunta de Galicia
http://dxsp.sergas.es





De: R-help-es  en nombre de Carlos Ortega 

Enviado: miércoles, 11 de septiembre de 2019 11:48
Para: Emilio L. Cano
Cc: R-help-es
Asunto: Re: [R-es] Leer fichero de SPSS...

Hola,

En canal privado, ya le envié a Christopher los ficheros de SPSS
transformados.

En su máquina, después de pasar por estos mismos pasos, no parecía
funcionar ni los paquetes "haven", ni "foreign" para importar sus ficheros
SPSS
Así que me pasó los ficheros SPSS, los importé sin problemas y le devolví
los ficheros .CSV.

Se me pasó recordarle a Christopher que al menos enviara una nota
comentando todo esto a la lista para no seguir dando vueltas..sobreestimé
su "netiquette"... :-(.

Gracias,
Carlos Ortega
www.qualityexcellence.es














Nota: A información contida nesta mensaxe e os seus posibles documentos 
adxuntos é privada e confidencial e está dirixida únicamente ó seu 
destinatario/a. Se vostede non é o/a destinatario/a orixinal desta mensaxe, por 
favor elimínea. A distribución ou copia desta mensaxe non está autorizada.

Nota: La información contenida en este mensaje y sus posibles documentos 
adjuntos es privada y confidencial y está dirigida únicamente a su 
destinatario/a. Si usted no es el/la destinatario/a original de este mensaje, 
por favor elimínelo. La distribución o copia de este mensaje no está autorizada.

See more languages: http://www.sergas.es/aviso-confidencialidad

___
R-help-es mailing list
R-help-es@r-project.org
https://stat.ethz.ch/mailman/listinfo/r-help-es


Re: [R-es] Leer fichero de SPSS...

2019-09-11 Thread Carlos Ortega
Hola,

En canal privado, ya le envié a Christopher los ficheros de SPSS
transformados.

En su máquina, después de pasar por estos mismos pasos, no parecía
funcionar ni los paquetes "haven", ni "foreign" para importar sus ficheros
SPSS
Así que me pasó los ficheros SPSS, los importé sin problemas y le devolví
los ficheros .CSV.

Se me pasó recordarle a Christopher que al menos enviara una nota
comentando todo esto a la lista para no seguir dando vueltas..sobreestimé
su "netiquette"... :-(.

Gracias,
Carlos Ortega
www.qualityexcellence.es


El mié., 11 sept. 2019 a las 9:12, Emilio L. Cano ()
escribió:

> Christopher,
>
> Tu duda inicial NO tenía nada que ver con **forecast**, sino con la
> dependencia de haven con **forcats** (no es lo mismo aunque se parecen
> mucho los nombres). Si has instalado forcats entonces la importación de
> SPSS ya no te debería dar el error que enviaste al principio.
>
> Sinceramente, no sé cuál es tu duda ahora. Para poder ayudarte tienes que
> explicarte mejor.
>
> Un saludo,
> Emilio
>
> PS: Por favor responde siempre “a todos” para que lleguen los mensajes a
> la lista y todos nos beneficiemos de la ayuda aportada.
>
> > El 10 sept 2019, a las 22:38, Christopher Estrada Ruiz <
> christopher_estrada_r...@hotmail.com> escribió:
> >
> > Que tal Emilio:
> >
> > Intente hacerlo como me indicas y esto es lo que obtengo:
> >
> > 
> > De: Emilio L. Cano  emilopezc...@gmail.com>>
> > Enviado: martes, 10 de septiembre de 2019 3:25
> > Para: Christopher Estrada Ruiz 
> > Cc: R-help-es 
> > Asunto: Re: [R-es] Leer fichero de SPSS...
> >
> > Christopher:
> >
> > No tienes que descargar nada, instala los paquetes que necesites desde
> la consola (solo tienes que hacerlo una vez, no incluirlo en ningún script):
> >
> > install.packages(“forcats”)
> >
> > O también desde el gestor de paquetes de RStudio: panel inferior
> derecho, pestaña “Packages”, botón “Install”, y buscas el paquete que
> necesites.
> >
> >
> > Un saludo,
> > Emilio
> >
> >
> >> El 10 sept 2019, a las 3:31, Christopher Estrada Ruiz <
> christopher_estrada_r...@hotmail.com  christopher_estrada_r...@hotmail.com>> escribió:
> >>
> >> Buenas noches Emilio,
> >>
> >> Excelente respuesta, te agradezco el tiempo que te has tomada para dar
> luz sobre mi problema, no sé cómo instalar "forcats" ya revise la liga del
> CRAN que me compartiste en donde encontré archivos .ZIP pero desconozco la
> manera de instalarlo en Windows. Por favor tu ayuda para instalar esta
> paqueteria, ¿Que pasos debo seguir después de visitar el CRAN?
> >>
> >> Saludos!!
> >> De: Emilio L. Cano  emilopezc...@gmail.com>>
> >> Enviado: sábado, 7 de septiembre de 2019 4:36
> >> Para: Carlos Ortega  c...@qualityexcellence.es>>
> >> Cc: Christopher Estrada Ruiz  >; R-help-es <
> r-help-es@r-project.org >
> >> Asunto: Re: [R-es] Leer fichero de SPSS...
> >>
> >> Hola,
> >>
> >> Yo utilizo el paquete haven y tiene la ventaja de que importa los
> metadatos de SPSS, y por otra parte si es una tarea recurrente no hay que
> estar exportando a csv u otros formatos. Es el que utiliza el asistente de
> importación de datos de RStudio (el que habrás usado en tu captura de
> pantalla).
> >>
> >> Cuidado: el mensaje que te da en la captura de pantalla se refiere al
> paquete “forcats” (del tidyverse, igual que haven), y no “forecast". Según
> CRAN (https://cran.r-project.org/web/packages/haven/index.html <
> https://cran.r-project.org/web/packages/haven/index.html>), haven importa
> funciones de forcats, y por tanto tienes que tener forcats instalado para
> poder utilizar haven.
> >>
> >> Si vas a utilizar paquetes del “tidyverse”, te aconsejo que instales el
> paquete “tidyverse” ya que hay muchas dependencias entre ellos.
> >>
> >> Un saludo,
> >> Emilio
> >> http://emilio.lcano.com 
> >>
> >>
> >>> El 6 sept 2019, a las 21:00, Carlos Ortega  > escribió:
> >>>
> >>> "forecast" no, es "foreign".
> >>> Sí, hay que instalarlo no está entre los paquetes que trae R en la
> >>> instalación básica.
> >>>
> >>> Gracias,
> >>> Carlos.
> >>>
> >>> El vie., 6 sept. 2019 a las 20:50, Christopher Estrada Ruiz (<
> >>> christopher_estrada_r...@hotmail.com  christopher_estrada_r...@hotmail.com>>) escribió:
> >>>
>  Gracias. Es necesario instalar "forecast"??
> 
>  Obtener Outlook para Android  https://aka.ms/ghei36>>
> 
>  --
>  *From:* Carlos Ortega  c...@qualityexcellence.es>>
>  *Sent:* Friday, September 6, 2019 1:37:08 PM
>  *To:* Christopher Estrada Ruiz  >
>  *Cc:* Juan Abasolo mailto:juan.abas...@ehu.eus>>;
> R-help-es <
>  r-help-es@r-project.org >
>  *Subject:* Leer fichero de SPSS...
> 
>  Hola,
> 
>  Es conveniente que cambies el título de tu duda...
> 

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,
> Try:
>
> mydf<-mydf[,c(2,1)]
>
> You might be surprised.
>
> Jim
>
> On Tue, Sep 10, 2019 at 12:20 PM smart hendsome via R-help  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   6
> > I want move my 2nd column become like this:
> >   X11  234   5   6
> > Hope anyone can help me. Many thanks.
> >
> > Zuhri
> >
> > [[alternative HTML version deleted]]
> >
> > __
> > R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see
> > 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-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see
> 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.
Osobní údaje: Informace o zpracování a ochraně osobních údajů obchodních 
partnerů PRECHEZA a.s. jsou zveřejněny na: 
https://www.precheza.cz/zasady-ochrany-osobnich-udaju/ | Information about 
processing and protection of business partner’s personal data are available on 
website: https://www.precheza.cz/en/personal-data-protection-principles/
Důvěrnost: Tento e-mail a jakékoliv k němu připojené dokumenty jsou důvěrné a 
podléhají tomuto právně závaznému prohláąení o vyloučení odpovědnosti: 
https://www.precheza.cz/01-dovetek/ | This email and any documents attached to 
it may be confidential and are subject to the legally binding disclaimer: 
https://www.precheza.cz/en/01-disclaimer/

__
R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see
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-es] Leer fichero de SPSS...

2019-09-11 Thread Emilio L. Cano
Christopher,

Tu duda inicial NO tenía nada que ver con **forecast**, sino con la dependencia 
de haven con **forcats** (no es lo mismo aunque se parecen mucho los nombres). 
Si has instalado forcats entonces la importación de SPSS ya no te debería dar 
el error que enviaste al principio.

Sinceramente, no sé cuál es tu duda ahora. Para poder ayudarte tienes que 
explicarte mejor.

Un saludo,
Emilio

PS: Por favor responde siempre “a todos” para que lleguen los mensajes a la 
lista y todos nos beneficiemos de la ayuda aportada.

> El 10 sept 2019, a las 22:38, Christopher Estrada Ruiz 
>  escribió:
> 
> Que tal Emilio:
> 
> Intente hacerlo como me indicas y esto es lo que obtengo:
> 
> 
> De: Emilio L. Cano mailto:emilopezc...@gmail.com>>
> Enviado: martes, 10 de septiembre de 2019 3:25
> Para: Christopher Estrada Ruiz 
> Cc: R-help-es 
> Asunto: Re: [R-es] Leer fichero de SPSS...
>  
> Christopher:
> 
> No tienes que descargar nada, instala los paquetes que necesites desde la 
> consola (solo tienes que hacerlo una vez, no incluirlo en ningún script):
> 
> install.packages(“forcats”)
> 
> O también desde el gestor de paquetes de RStudio: panel inferior derecho, 
> pestaña “Packages”, botón “Install”, y buscas el paquete que necesites.
> 
> 
> Un saludo,
> Emilio
> 
> 
>> El 10 sept 2019, a las 3:31, Christopher Estrada Ruiz 
>> > > escribió:
>> 
>> Buenas noches Emilio,
>> 
>> Excelente respuesta, te agradezco el tiempo que te has tomada para dar luz 
>> sobre mi problema, no sé cómo instalar "forcats" ya revise la liga del CRAN 
>> que me compartiste en donde encontré archivos .ZIP pero desconozco la manera 
>> de instalarlo en Windows. Por favor tu ayuda para instalar esta paqueteria, 
>> ¿Que pasos debo seguir después de visitar el CRAN?
>> 
>> Saludos!!
>> De: Emilio L. Cano mailto:emilopezc...@gmail.com>>
>> Enviado: sábado, 7 de septiembre de 2019 4:36
>> Para: Carlos Ortega > >
>> Cc: Christopher Estrada Ruiz > >; R-help-es 
>> mailto:r-help-es@r-project.org>>
>> Asunto: Re: [R-es] Leer fichero de SPSS...
>>  
>> Hola,
>> 
>> Yo utilizo el paquete haven y tiene la ventaja de que importa los metadatos 
>> de SPSS, y por otra parte si es una tarea recurrente no hay que estar 
>> exportando a csv u otros formatos. Es el que utiliza el asistente de 
>> importación de datos de RStudio (el que habrás usado en tu captura de 
>> pantalla).
>> 
>> Cuidado: el mensaje que te da en la captura de pantalla se refiere al 
>> paquete “forcats” (del tidyverse, igual que haven), y no “forecast". Según 
>> CRAN (https://cran.r-project.org/web/packages/haven/index.html 
>> ), haven importa 
>> funciones de forcats, y por tanto tienes que tener forcats instalado para 
>> poder utilizar haven.
>> 
>> Si vas a utilizar paquetes del “tidyverse”, te aconsejo que instales el 
>> paquete “tidyverse” ya que hay muchas dependencias entre ellos.
>> 
>> Un saludo,
>> Emilio
>> http://emilio.lcano.com 
>> 
>> 
>>> El 6 sept 2019, a las 21:00, Carlos Ortega >> > escribió:
>>> 
>>> "forecast" no, es "foreign".
>>> Sí, hay que instalarlo no está entre los paquetes que trae R en la
>>> instalación básica.
>>> 
>>> Gracias,
>>> Carlos.
>>> 
>>> El vie., 6 sept. 2019 a las 20:50, Christopher Estrada Ruiz (<
>>> christopher_estrada_r...@hotmail.com 
>>> >) escribió:
>>> 
 Gracias. Es necesario instalar "forecast"??
 
 Obtener Outlook para Android >
 
 --
 *From:* Carlos Ortega >>> >
 *Sent:* Friday, September 6, 2019 1:37:08 PM
 *To:* Christopher Estrada Ruiz >>> >
 *Cc:* Juan Abasolo mailto:juan.abas...@ehu.eus>>; 
 R-help-es <
 r-help-es@r-project.org >
 *Subject:* Leer fichero de SPSS...
 
 Hola,
 
 Es conveniente que cambies el título de tu duda...
 
 Para leer ficheros de SPSS dentro de R tienes estas dos opciones:
 
 1. Paquete *foreign*.
 2. Paquete *haven.*
 
 Saludos,
 Carlos Ortega
 www.qualityexcellence.es 
 
 El vie., 6 sept. 2019 a las 20:24, Christopher Estrada Ruiz (<
 christopher_estrada_r...@hotmail.com 
 >) escribió:
 
> Pregunta, ¿Como puedo leer datos de SPSS con R studio?
> 
> Obtener Outlook para Android  >
> 
> --
> *From:* R-help-es  > on behalf of Juan
> Abasolo mailto:juan.abas...@ehu.eus>>
> 

Re: [ESS] ESS-help Digest, Vol 199, Issue 3

2019-09-11 Thread Braun, Michael via ESS-help
I use Aquamacs 3.5, based on emacs 25.3, ESS 18.10.3snapshot from MELPA, OSX 
10.14.16, and the following works for me.

(add-to-list 'load-path "~/Library/Preferences/Aquamacs Emacs/Packages/lisp/")
(require 'ess-site)
(load "ess-autoloads")  ;; need to register Rnw files
(require ‘polymode) ;; version 2.0 now
(require 'poly-markdown)
(require 'poly-noweb)
(require 'poly-R)  ;;

I, too, found the order mattered, but I think it’s because poly-R depends on 
poly-noweb and poly-markdown, which depend on polymode.

But I am more interested in the errors you are getting.  After upgrading to 
poly-R-2.0, I found that clicking on the menubar while an R buffer was open was 
crashing Aquamacs (and replicated on Emacs 26.3).  I’ll start another thread 
once I’ve narrowed down the source of the problem some more, but I am curious 
if this is related.



> On Sep 10, 2019, at 5:02 AM, ess-help-requ...@r-project.org wrote:
> 
> Send ESS-help mailing list submissions to
>   ess-help@r-project.org
> 
> To subscribe or unsubscribe via the World Wide Web, visit
>   https://stat.ethz.ch/mailman/listinfo/ess-help
> or, via email, send a message with subject or body 'help' to
>   ess-help-requ...@r-project.org
> 
> You can reach the person managing the list at
>   ess-help-ow...@r-project.org
> 
> When replying, please edit your Subject line so it is more specific
> than "Re: Contents of ESS-help digest..."
> 
> 
> Today's Topics:
> 
>   1.  Issue with polymode installed from ELPA (Sparapani, Rodney)
> 
> --
> 
> Message: 1
> Date: Tue, 10 Sep 2019 02:25:56 +
> From: "Sparapani, Rodney" 
> To: ess-help 
> Subject: [ESS] Issue with polymode installed from ELPA
> Message-ID: <1a2467f8-5b2a-486a-acf9-23e427ba8...@mcw.edu>
> Content-Type: text/plain; charset="utf-8"
> 
> Hi Gang:
> 
> I am stumped.  I tried to install polymode from ELPA into Vincent Goulet's
> distro of Emacs and ESS (it no longer contains polymode sadly).  
> macOS 10.14.4 Mojave, Emacs version 26.2 and ESS version 18.10.2  
> The ELPA install seemed to go well.  My load-path starts with
> ("/Users/rsparapa/.emacs.d/elpa/poly-R-0.2" 
> "/Users/rsparapa/.emacs.d/elpa/poly-markdown-0.2" 
> "/Users/rsparapa/.emacs.d/elpa/markdown-mode-2.3" 
> "/Users/rsparapa/.emacs.d/elpa/poly-noweb-0.2" 
> "/Users/rsparapa/.emacs.d/elpa/polymode-0.2" ...
> So, everything looks good.  But, I get errors when I put simple requires in 
> .emacs like (require 'polymode)
> So, I hard-coded all of the paths, but this gets hairy since now I have to 
> hard-code all of the dependencies too ...
> (require 'polymode-classes "~/.emacs.d/elpa/polymode-0.2/polymode-classes.el")
> (require 'polymode-core "~/.emacs.d/elpa/polymode-0.2/polymode-core.el")
> (require 'polymode-compat "~/.emacs.d/elpa/polymode-0.2/polymode-compat.el")
> (require 'polymode-methods "~/.emacs.d/elpa/polymode-0.2/polymode-methods.el")
> (require 'polymode-export "~/.emacs.d/elpa/polymode-0.2/polymode-export.el")
> (require 'polymode-weave "~/.emacs.d/elpa/polymode-0.2/polymode-weave.el")
> (require 'polymode-base "~/.emacs.d/elpa/polymode-0.2/polymode-base.el")
> (require 'poly-lock "~/.emacs.d/elpa/polymode-0.2/poly-lock.el")
> (require 'polymode "~/.emacs.d/elpa/polymode-0.2/polymode.el")
> (require 'poly-noweb "~/.emacs.d/elpa/poly-noweb-0.2/poly-noweb.el")
> (require 'poly-markdown "~/.emacs.d/elpa/poly-markdown-0.2/poly-markdown.el")
> (require 'poly-R "~/.emacs.d/elpa/poly-R-0.2/poly-R.el")
> Getting the order of the dependencies right was a pain as well.  However, 
> brute force fixed it!  But, I don't want to go through this ever again for
> obvious reasons.  It took me over an hour for what is supposed to be a 5 or
> 10 minute install.  Does anyone have an idea of WTF is going wrong here?
> 
> Thanks,
> 
> Rodney
> 
> 
> 
> 
> 
> --
> 
> Subject: Digest Footer
> 
> ___
> ESS-help mailing list  DIGESTED
> ESS-help@r-project.org
> https://stat.ethz.ch/mailman/listinfo/ess-help
> 
> 
> --
> 
> End of ESS-help Digest, Vol 199, Issue 3
> 

--
Michael Braun, Ph.D.
Associate Professor of Marketing, and
  Corrigan Research Professor
Cox School of Business
Southern Methodist University
Dallas, TX 75275
bra...@smu.edu




__
ESS-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/ess-help