Displaying 20 results from an estimated 4000 matches similar to: "Database Modeling Tools"
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
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 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",
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 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:
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
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
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
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=";",
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 <-
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
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
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 =
2020 Feb 20
3
SQL modeling tool for CentOS 7
On 02/16/2020 10:47 PM, Bee.Lists wrote:
> Sequel ORM
>
>
>> On Feb 16, 2020, at 7:28 PM, H <agents at meddatainc.com> wrote:
>>
>> I am looking for an open-source SQL modeling tool to use with MySQL, MariaDB and PostgreSQL. Does anyone have a favorite?
>
>
> Cheers, Bee
>
>
>
>
> _______________________________________________
> CentOS
2006 Apr 20
0
Ruby bindings for Valentina: help wanted
Hi
Ruslan Zasukhin is looking for people with experience in doing
connection adapters to help him out in analyzing and implementing
native ruby bindings for the ultra-fast Valentina database and
providing access to Rails.
You can find out more about Valentina at http://www.paradigmasoft.com/
Brave souls wanting to help out can contact Ruslan at
2019 Feb 14
2
Geany 1.34
On 02/14/2019 08:19 PM, Stephen John Smoogen wrote:
> On Thu, 14 Feb 2019 at 13:25, Stephen John Smoogen <smooge at gmail.com> wrote:
>> On Thu, 14 Feb 2019 at 12:47, H <agents at meddatainc.com> wrote:
>>> On 02/14/2019 05:58 PM, Tate Belden wrote:
>>>> FWIW, on Fedora 29, I'm running Geany 1.34.1 and didn't have to enable
>>>>
2019 Feb 14
3
Geany 1.34
On Thu, 14 Feb 2019 at 12:47, H <agents at meddatainc.com> wrote:
>
> On 02/14/2019 05:58 PM, Tate Belden wrote:
> > FWIW, on Fedora 29, I'm running Geany 1.34.1 and didn't have to enable
> > anything other than the default repositories. So, it'd appear to at least
> > be in the stream.
> >
> > geany-1.34.1-2.fc29.x86_64
> >
> > On
2017 Oct 27
2
kmod-jfs on Centos 6
On 10/26/2017 08:01 PM, Akemi Yagi wrote:
> On Thu, Oct 26, 2017 at 4:17 PM, H <agents at meddatainc.com> wrote:
>
>> On October 26, 2017 6:31:04 PM EDT, Akemi Yagi <amyagi at gmail.com> wrote:
>>> On Thu, Oct 26, 2017 at 3:11 PM, H <agents at meddatainc.com> wrote:
>>>
>>>> On 04/18/2017 12:54 PM, H wrote:
>>>>> A couple