similar to: Ruby bindings for Valentina: help wanted

Displaying 20 results from an estimated 500 matches similar to: "Ruby bindings for Valentina: help wanted"

2015 Nov 10
2
Problema con la lectura de datos
Valentina, Si entiendo bien la primer columna de Variables es el nombre de Empresas (un character), no uses esta columna en la función cor, sólo las columnas numéricas. cor(Variables[ , -which( names(Variables) == "Empresas")]) Si no es ese el problema envía str(Variables) para entender mejor la estructura de los datos, y si puedes dput(Variables). Suerte, Daniel Merino El 10 de
2013 Apr 12
1
produce a map in ARCGIS from a GAM output
Hi, I am trying to predict the habitat suitability of lobster with GAMs. I need to produce a map in ArcGis of the predicted densities. I did some search and the function predict.gam seems to do the job. Is this the right way to do it? when you apply the function you get the predicted values (different from your input data points) but I do not understand what is the procedure with the spatial
2015 Oct 20
3
Error con tabla
Hola, En orden de lo anterior y en tratar de convertir los datos a númericos para poder sacar los estadísticos he hecho lo siguiente generando error: library(xtable) variables <- read.csv("C:/Users/usuario/Documents/Investigacion.csv", header=TRUE, sep=";", comment.char="" , colClasses=c(EMPRESAS="character",
2015 Nov 11
2
Problema con la lectura de datos
Hola. He estado viendo los datos que adjuntas en el correo. Al ser un fichero Excel xlsx ¿por qué no lo abres directamente? Te aconsejaría la librería openxlsx (si no la has usado nunca , instálala con install.packages(?openxlsx?)) Este es el código que he ejecutado y los resultados que obtengo: library(openxlsx) dat <- read.xlsx("Variables.xlsx") str(dat) Que produce:
2015 Nov 10
4
Problema con la lectura de datos
con as.numeric tampoco me van los cálculos y no conozco otra manera, pues son alrededor de 40 variables las que tiene la tabla. To: valeagui en outlook.es; cof en qualityexcellence.es; r-help-es en r-project.org From: javier.ruben.marcuzzi en gmail.com Subject: RE: [R-es] Problema con la lectura de datos Date: Tue, 10 Nov 2015 16:43:05 -0300 Estimada Valentina as.numeric(...) Mira mi correo
2015 Nov 11
2
Problema con la lectura de datos
Si lo has guardado como csv separado por comas: Abre con cualquier editor el fichero: mira separador de listas y separador de decimal, supongamos que sea "; " para las listas (esto depende de tu configuración regional) y "." para los decimales (es como lo tienes en tu fichero) entonces dat<-read.csv("Variables.csv", header=T, sep=";",
2013 Feb 07
7
"dynamic memory allocation" for windows guests?
Hello, In our office we would like to do something like "memory overcommitment" or rather "dynamic allocation" for a bunch of windows domUs (server 2003 & 2008). We thought this should be a simple feature, however we did not find any fitting solution. We use Xen 4.2.1 with xl toolstack. The idea is to use ballooning to dynamically (and automatically) change physical
2015 Nov 11
2
Problema con la lectura de datos
?Hola, A mí me funciona la importación directa. Previamente he guardado la hoja de Excel en .csv (separado por ";"). Y hago sin problemas la correlación entre dos variables (las dos primeras). > datIn <- read.csv("Variables.csv", header=T, as.is=T, sep=";", dec=",") > head(datIn) EMPRESAS AA AB AC AD AE AF AG AH AI
2013 Oct 08
2
problems with package COZIGAM
Dear All I am having problems to install the package COZIGAM. Despite I have the update version of R (3.0.2) when I try to load the package I cannot find it in the list of available packages. If I try to install it from a local zip file I do get this error message: Error in read.dcf(file.path(pkgname, "DESCRIPTION"), c("Package", "Type")) : cannot open the
2015 Oct 19
3
Error con tabla
Hola Miguel A. Muchas gracias por tu colaboración...pues bien en realidad son nueva con r y no sé aún muchas cosas "básicas". En la primera columna tenía los nombres de las empresas (en letras) y eliminé esa columna, pero me siguen saliendo los mismos errores. Este es un análisis que debo hacer en primera instancia, pero el fin último es realizar un análisis factorial qué aún no se como
2013 Oct 18
1
hurdle model error why does need integer values for the dependent variable?
Dear list, I am using the hurdle model for modelling the habitat of rare fish species. However I do get an error message when I try to model my data: > test_new1<-hurdle(GALUMEL~ depth + sal + slope + vrm + lat:long + offset(log(haul_numb)), dist = "negbin", data = datafit_elasmo) Error in hurdle(GALUMEL ~ depth + sal + slope + vrm + lat:long + offset(log(haul_numb)), :
2007 Oct 30
2
markov regime switching models
Hi, I am looking for a package to estimate regime switching models (states following a markov chain). I found packages for Hidden Markov Models but I am looking for something a little different: In the HMM the conditional distribution of the observations (give the state) is a known distribution (normal or others), while the package I need should allow to set a conditional distribution (given the
2015 Nov 10
2
Problema con la lectura de datos
Hola, sin indicar los tipos de variables si los lee, pero el problema está en que necesito calcular una matriz de correlaciones y genera el siguiente error: Error in cor(Variables) : 'x' must be numeric Date: Tue, 10 Nov 2015 20:35:40 +0100 Subject: Re: [R-es] Problema con la lectura de datos From: cof en qualityexcellence.es To: valeagui en outlook.es CC: r-help-es en r-project.org
2015 Nov 11
4
Problema con la lectura de datos
Has probado con cor(datos,use="pairwise.complete.obs") ??? > From: valeagui en outlook.es > To: cof en qualityexcellence.es; r-help-es en r-project.org > Date: Wed, 11 Nov 2015 15:13:55 +0000 > Subject: Re: [R-es] Problema con la lectura de datos > > Hola Carlos, muchas gracias....pero hago exactamente lo mismo que tu..y al intentar de hacer la matriz de
2016 Oct 16
1
Database Modeling Tools
BeaverDB might be a good fit if you don't mind that it's written in Java. I actually find myself using Valentina Studio these days. It's not open source, but it is free, and it's written in Qt, and is multi-platform. Jason On Oct 16, 2016 1:38 PM, H <agents at meddatainc.com> wrote: I am looking for an open-source database modeling tool, ideally to run under both CentOS
2015 Oct 19
2
Error con tabla
Hola a todos, Tengo el siguiente problema: Tengo un archivo de excel que lo convertÍ a csv y tiene la siguiente estructura:La primera columna con el nombre de las empresas (48 empresas) y 17 columnas más (variables) con información sobre esas empresas. Cargo el archivo en r de la siguiente manera para poder trabajar con el: library(xtable)variables <-
2013 Oct 20
3
Errore : requires numeric/complex matrix/vector arguments
Dear R users,I'm a new user of R. I'm trying to do a LM test an there is this type of error: Error in t(mX) %*% mX : requires numeric/complex matrix/vector arguments. To be clear I write down the code in which mY ( 126,1 ) mX (126,1) mZ(126,1) are matrix. LMTEST <- function(mY, mX, mZ)#mY, mX, mZ must be matrices!#returns the LM test statistic and the degree of freedom{iT =
2013 Oct 09
0
habitat mapping of sharks
Dear All, I am trying to model the habitat mapping of 4 sharks species and my data are zero inflated and positively skewed. The zero percentages in my data vary between 56-77%. I did some tests fitting GAMs with negative binomial family (with theta between 1-10). Is this the best way to go? Some people have used VGAM (with zero inflated negative binomial) but my concern is that using the VGAM
2013 Dec 18
0
[Bug 600] ULOG target does not support --log-uid
https://bugzilla.netfilter.org/show_bug.cgi?id=600 --- Comment #9 from Phil Oester <netfilter at linuxace.com> 2013-12-18 19:38:22 CET --- See http://marc.info/?l=netfilter-devel&m=138739033331758&w=2 where Valentina Giusti has submitted a patch to achieve this. -- Configure bugmail: https://bugzilla.netfilter.org/userprefs.cgi?tab=email ------- You are receiving this mail
2017 Aug 24
1
Invalid Signature of orc::RTDyldObjectLinkingLayer::NotifyLoadedFtor
Hi all, hi Lang It's a little late to report issues for release_50, but I just found that thing while porting my JitFromScratch examples to 5.0. This is a really nifty detail, but (if I'm not mistaken) the function signature of RTDyldObjectLinkingLayer::NotifyLoadedFtor is incorrect: $ grep -h -r -A 1 "using NotifyLoadedFtor"