similar to: Error in funcion distancia() in package dprep(v1.0) (PR#9745)

Displaying 20 results from an estimated 100 matches similar to: "Error in funcion distancia() in package dprep(v1.0) (PR#9745)"

2009 Apr 28
1
I can't install dprep
When I want to install "dprep" and I always get information: > install.packages("dprep") Warning in install.packages("dprep") : argument 'lib' is missing: using 'C:\Users\Documents/R/win-library/2.8' --- Please select a CRAN mirror for use in this session --- Warning message: package ?dprep? is not available I have tried a lot of mirror...
2007 Mar 28
0
Outlier detection with the dprep library
Hi. The dprep library has at least three different methods for outlier detection: baysout, mahaout, robout. I wanted to test them on a very simple data set: vrmat<-cbind((1:22),c(8,14,14,17,21,20,27,23,25,33,31,32,30,36,37,40,42,44,52,61,81,265)) As you can see by eyeballing this, the last point is a very good outlier candidate, and maybe the second to last point, too. Anyway, I
2013 Oct 09
0
Sessión a distancia
Esta fue una gran iniciativa y tenía muy presente el tema relacionado a la transmisión por internet, pero por motivos de trabajo no pude conectarme al enlace en el horario establecido y me gustaría consultar si existe la posibilidad de subir algún enlace que tenga el video o grabación. Agradecido de su respuesta, atte Felipe Vargas R. El 8 de octubre de 2013 12:59, Aleix Ruiz de Villa
2013 Oct 28
1
Sessión a distancia
Hemos colgado en internet la última sesión del grupo de usuarios de R de Barcelona, en los servidores de R-es.org (aprovechamos para agradecer a la comunidad R hispano su disponibilidad para ofrecer dicho servicio) en http://r-es.org/rugbcn-online La sesión de "El Miércoles 09 de Octubre, 2013 desde la/s 18:46h hasta la/s 21:02h". La presentación de Juan Galeano está también disponible
2013 Oct 10
1
Sessión a distancia
Felipe, gracias por tu interés. La sesión quedó grabada y se colgará en breve en la página de R-es. Ya avisaremos cuando esté colgada. Un saludo, Aleix El 10 de octubre de 2013 00:01, Felipe Vargas Reeve <kaiser756@gmail.com>escribió: > Esta fue una gran iniciativa y tenía muy presente el tema relacionado a > la transmisión por internet, pero por motivos de trabajo no pude
2013 Oct 08
2
Sessión a distancia
La reunión de mañana<http://rugbcn.wordpress.com/2013/09/13/proxima-reunio-3/> del grupo de usuarios de Barcelona (RugBcn - http://rugbcn.wordpress.com/2013/09/13/proxima-reunio-3/) será retransmitida a través de la red. Para aquellos que estéis interesados, tenéis que conectaros a http://r-es.org/rugbcn-online, poner un “Nombre” y darle al botón “unirse”. Esperemos que os resulten
2009 Sep 06
1
Two packages and one method
Hi! I want to use one method "combinations" from "gtools" package but in my code I must use also "dprep" method where is method "combinations" too. Mayby I show you result my help function: Help on topic 'combinations' was found in the following packages: Package Library dprep /usr/lib64/R/library gtools
2008 Dec 09
4
Pre-model Variable Reduction
Hello All, I am trying to carry out variable reduction. I do not have information about the dependent variable, and have only the X variables as it were. In selecting variables I wish to keep, I have considered the following criteria. 1) Percentage of missing value in each column/variable 2) Variance of each variable, with a cut-off value. I recently came across Weka and found that there is an
2009 Apr 27
1
MDL - Fayyad & Irani Discretization
Hey, I'm looking for a function which provides a supervised Fayyad & Irani discretization (MDL). I've already found RWeka which has such a function. But is there anything else? I'd prefer to use sth lighter in my own package. Regards, Peter
2005 Feb 04
2
genetic algorithm
Hi, I am doing some research on feature selection for classfication problem using genetic algorithm in a wrapper approach. I am wondering if there is some package which is already built for this purpose. I was advised before about dprep package but I don't think it used GA there (if I am wrong, please correct me!) Thanks, Ed
2010 Jan 11
0
trouble with installing pbatR
Hello folks, I am having a problem installing pbatR package. (My R version is 2.8.1.) As I execute a command > install.packages(lib='/usr/local/apps/R-2.8.1/lib64/R/library', "pbatR") it detects lack of rootSolve package and attempts to install it. But cannot seem to compile it, and the rest is aborted. Any hint as to what I can do? Thank you in advance for your
2018 Nov 10
2
Asignar distancias
Muy buenas. A ver si alguien puede echarme una mano. A partir de una matriz de distancias de 29 x 29 he obtenido una df1. Ahora tengo 841 filas con la distancia de cada combinación de esas 29 categorías. Algo así como: Var1 Var2 Dist a a 0 a b 3 a c 5 b a 3 b b 0 b c 5 c ... En otra df2, de 14563 filas, tengo las
2018 Nov 10
2
Asignar distancias
Utilizo la función merge desde hace poco, pero no se me ocurre cómo utilizarla para esto. Yo pienso que se puede hacer con una combinación de ifelse-s pero no sé cómo. Seguro que hay más de una forma ce hacerlo. Quoting José María Mateos <chema en rinzewind.org>: > On Sat, Nov 10, 2018 at 07:54:19PM +0100, Manuel Mendoza wrote: >> Muy buenas. A ver si alguien puede echarme
2011 Oct 11
1
Mean or mode imputation fro missing values
Dear R experts, I have a large database made up of mixed data types (numeric, character, factor, ordinal factor) with missing values, and I am looking for a package that would help me impute the missing values using ?either the mean if numerical or the mode if character/factor. I maybe could use replace like this: df$var[is.na(df$var)] <- mean(df$var, na.rm = TRUE) And go through all the many
2006 Jul 12
0
Discretize data.frame
Dear useRs, I use dics.ef function from dprep package to discretize continuous variable using intervals of equal frequencies. Dataset to be discretized include 4 continuous and 2 discrete variables in the following order: Continuous Countinuous Countinuous Discrete Discrete Continuous The problem emerge when I try to discretize the last continuos variable: library(dprep)
2017 Aug 13
2
Paralelizar el cálculo de distancias
Buenas, Quiero ver si he paralelizado correctamente el proceso. Tengo dos dataframes, A y B y quiero calcular la distancia euclídea de todas las filas de A sobre todas las filas de B. Para ello he hecho lo siguiente #cargo las librerias library(foreach) library(doParallel) #establezco el numero de clusters, en mi caso 4, ya que el procesador tiene 4 nucleos cl<-makeCluster(4)
2019 Sep 04
2
Dibujar un triángulo dadas la distancias de los segmentos.
Buenas, compañeros; Quiero buscar a ver si una idea (ocurrencia?) que tuve tiene sentido, para eso nencesito ver las representaciones gráficas de unos triángulos de los que no sé (ni me importa) la posición, pero sí sé las distancias entre los tres puntos. triangulo.con.lados <- c(47, 45, 55) Encuentro cómo dibujar con la función polygon, pero eso es dada la posición, que no la tengo ni
2007 Apr 12
2
problems in loading MASS
Hi, there: After I upgraded my R to 2.4.1, it is my first time of trying to use MASS and found the following error message: > install.packages("MASS") --- Please select a CRAN mirror for use in this session --- trying URL 'http://cran.cnr.Berkeley.edu/bin/macosx/universal/contrib/2.4/VR_7.2-33.tgz' Content type 'application/x-gzip' length 995260 bytes opened URL
2019 Sep 05
2
Dibujar un triángulo dadas la distancias de los segmentos.
Mira aquí como se soluciona... https://www.triangle-calculator.com/?what=sss&a=47&b=45&c=55&submit=Solve Saludos, Carlos Ortega www.qualityexcellence.es El jue., 5 sept. 2019 a las 13:17, Marcelino De La Cruz Rot (< marcelino.delacruz en urjc.es>) escribió: > Hola Juan: > > El 05/09/2019 a las 0:19, Juan Abasolo escribió: > > Buenas, compañeros; > >
2018 Sep 07
2
Construir matriz de distancias
Me encantaría saber pensar así de una. Creo que entiendo bien lo que me decís, pero no lo puedo poner en marcha en mi computadora, por algo que no sé qué será. Cuando llego a: > cosa<-aline(w1=x,w2=y) En RStudio me dice que R sufrió algo. Probé directamente desde la consola linux y también: > cosa<-aline(w1=x,w2=y) *** stack smashing detected ***: /usr/lib/R/bin/exec/R terminated