Re: [R] Can one perform a dry run of a package installation?

2019-04-10 Thread Sebastien Bihorel
Thanks - Original Message - From: "Duncan Murdoch" To: "Sebastien Bihorel" , r-help@r-project.org Sent: Tuesday, April 9, 2019 7:29:50 PM Subject: Re: [R] Can one perform a dry run of a package installation? On 09/04/2019 5:46 p.m., Sebastien Bihorel wrote: > Hi, > > Is there a way to

Re: [R] Define pch and color based on two different columns

2019-04-10 Thread Duncan Mackay
Hi Here is the caveat If you want to repeat it with loess? or panel loess something else that is not groups aware (I have not checked to see if it has been up dated) have a look at https://stat.ethz.ch/pipermail/r-help/2010-August/250050.html Regards Duncan Mackay Duncan Mackay Department of

Re: [R-es] Funcion para eliminar valores específicos de un vertor

2019-04-10 Thread Javier Marcuzzi
Estimados Yo también utilizo esa forma, pero depende como se utiliza, en la práctica es lo mismo pero no borra, sino que busca según el criterio y todos los datos que lo cumplen son almacenados en el mismo lugar, saca viejo coloca nuevo, en el 99,999% de los casos se puede interpretar como

Re: [R] Greek characters in R studio

2019-04-10 Thread Barry Rowlingson
What have you tried? read.table works perfectly for me with no language or encoding arguments. Here's a text file at the Linux command line: $ cat greek.csv α, β 1,2 3,4 I just have to tell it to use comma separators and there is a header line. Here's R: >

Re: [R] R web-scraping a multiple-level page

2019-04-10 Thread Chris Evans
- Original Message - > From: "Boris Steipe" > To: "Ilio Fornasero" > Cc: r-help@r-project.org > Sent: Wednesday, 10 April, 2019 12:34:15 > Subject: Re: [R] R web-scraping a multiple-level page [snip] > (2) Restrict the condition with a maximum number of cycles. More often than >

Re: [R] R web-scraping a multiple-level page

2019-04-10 Thread Boris Steipe
For similar tasks I usually write a while loop operating on a queue. Conceptually: initialize queue with first page add first url to harvested urls while queue not empty (2) unshift url from queue collect valid child pages that are not already in harvested list (1) add to harvested list

Re: [R-es] Funcion para eliminar valores específicos de un vertor

2019-04-10 Thread Isidro Hidalgo Arellano
Hola: cosas <- cosas[!cosas %in% c(98, 99) & cosas < 1000] Un saludo Isidro Hidalgo Arellano Observatorio del Mercado de Trabajo Consejería de Economía, Empresas y Empleo http://www.castillalamancha.es/ -Mensaje original- De: R-help-es En nombre de Kelly Johanna Monroy Malagon