Re: [ESS] Hang when opening remote session

2018-08-28 Thread Marcora, Edoardo via ESS-help
Thanks! This fixed the problem!!! ☺ [[alternative HTML version deleted]] __ ESS-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/ess-help

Re: [R] [FORGED] installing R in ubuntu

2018-08-28 Thread Rolf Turner
On 08/28/2018 11:26 PM, akshay kulkarni wrote: dear members, I am trying to install R in ubuntu AWS instance While getting help from google, I came across something called GPG key. How to get the GPG key for an AWS ubuntu instance? More over, what is a GPG

Re: [R] "use of NULL environment is defunct" when trying to lock a reference class

2018-08-28 Thread Ivan Krylov
Hi Eric, Thank you for your answer! On Mon, 27 Aug 2018 21:48:50 +0300 Eric Berger wrote: > you might want to consider the more recent R6 package Indeed, R6 has private fields which fits my idea of an object with mutable state even better. My original problem seems to be solved and I'm

Re: [ESS] Hang when opening remote session

2018-08-28 Thread Alex Branham via ESS-help
On Mon 27 Aug 2018 at 19:55, Marcora, Edoardo via ESS-help wrote: > Looking at the TRAMP debug buffer, this is where things hang... > > 11:53:28.096969 tramp-send-string (10) # cd > /hpc/users/XXX/projects/ad.myeloid/2018-08-22.hgnc_reannot/ && exec env >

[R] Writing .nc files

2018-08-28 Thread R. Mark Sharp via R-help
Marco, Always post to the r-help list to have a better chance of finding someone that can help. There is a very nice tutorial that you should have found. See http://geog.uoregon.edu/bartlein/courses/geog490/week04-netCDF.html#create-and-write-a-netcdf-file Mark R. Mark Sharp, Ph.D. Data

Re: [R-es] Media

2018-08-28 Thread MAURICIO MARDONES
genial y gracias a todos! El mar., 28 ago. 2018 a las 4:45, Jesús Para Fernández (< j.para.fernan...@hotmail.com>) escribió: > O con data.table que puede ser bastante más rápido > > > > library(data.table) > > talla <- data.table(talla) > > resultados <- talla[,.(media =mean(Long),n=.N),by=Año]

Re: [R-es] espectros

2018-08-28 Thread Javier Marcuzzi
Estimado Omar Si usted sigue mis consejos de emisión atómica puede llegar a tener una explosión atómica, sin embargo, hay dos posibilidades a su pregunta, usted escribe eficiente, eso puede ser interpretado en la forma que se arman por ejemplo las redes neuronales, y por otro lado en eficiente

Re: [R-es] espectros

2018-08-28 Thread J_Ordieres
Hola, buenas tardes: Bueno, depende en primer lugar de las técnicas de compresión que desee utilizar. Por si sirve de referencia en https://www.sciencedirect.com/science/article/abs/pii/S016974391630421X hemos empleado compresión ICA y después SVR como regresor. En el caso que indicas parece que

[R-es] espectros

2018-08-28 Thread usuriaga
Hola amigos, Mi pregunta es: cuál es el algoritmo de Machine Learning mas eficiente para clasificar espectros. Tengo un banco de datos de espectros de emision atomica (longitud de onda versus amplitud), necesito entrenar un algortimo, para despues "adivinar" un espectro de emision

Re: [R] installing R in ubuntu

2018-08-28 Thread peter dalgaard
It's a digital signature (GNU Privacy Guard). Typically to allow you to verify that the stuff you install is what it says that it is. However, you are not likely to get more informative answers than that in this forum. Possible better is the R-SIG-debian lists or forums specifically for AWS.

[R-es] Bookdown/error al usar split_by chapter

2018-08-28 Thread Antonio Rodriguez Andres
Estimada lista Estoy escribiendo un libro y en principio tengo los capitulos en Rmd files y un fichero indice (Rmd.) y no me da problemas al compilar el libro tanto en html como en pdf. La cabecera del fichero indice (el primer Rmd) es, --- title: "Analisis estadistico" author: "Antonio R.A"

Re: [R-es] Media

2018-08-28 Thread Carlos Ortega
Salvo un par de casos, hemos reproducido perfectamente lo que ya aparece en Stackoverflow https://stackoverflow.com/questions/21982987/mean-per-group-in-a-data-frame Saludos, Carlos Ortega www.qualityexcellence.es El 28 de agosto de 2018, 10:25, Patricio Suárez Gil escribió: > Hola, > >

[R-es] Media

2018-08-28 Thread Patricio Suárez Gil
Hola, ya se han dado muchas respuestas válidas, pero una de las más básicas sería con la función by(): by(talla$long, talla$Año, mean, na.rm = T) añado el argumento na.rm = T por si hubiera datos perdidos. Un saludo, Patricio Suárez Gil Instituto de Investigación Sanitaria del Principado

Re: [R-es] Media

2018-08-28 Thread Carlos Ortega
Ya puestos, hay otras formas: 1. función aggregate(): aggregate( Lon ~ Año, data = talla, mean) 2. sqldf library(sqldf) sqldf("select avg(Lon) as med_lon from tall group by Año") Saludos, Carlos Ortega www.qualityexcellence.es El 28 de agosto de 2018, 2:27, Eric escribió: > Con la libreria

Re: [R] importing .v8x file in R

2018-08-28 Thread Vidya Alagiriswamy
Thank you. Will take look. Sent from my iPhone > On Aug 27, 2018, at 1:53 PM, John Kane wrote: > > A simple google would have let you here SAS Enterprise Guide Implemented at > MDACC. > It looks like you have a SAS transport file . Check out the SASxport package. > It may do what you want. >