search for: falsas

Displaying 5 results from an estimated 5 matches for "falsas".

2015 Oct 08
3
Tranformar falsas variables char en numéricas
Hola usuarios de R, Antes de nada presentarme, soy nuevo en R (antiguo... y bueno actual usuario de SAS), llevo menos de un mes y estoy intentando empezar con pequeñas cosas. Hay un tema que me está llevando bastante tiempo y por más que investigo y hago pruebas no logro saber como se hace; veréis tengo un data.frame el cuál tiene bastante variables y todas ellas clasificadas como char, sin
2015 Oct 08
1
Tranformar falsas variables char en numéricas
Hola, Una manera muy sencilla de hacerlo es esta: #------------------------------- whatcol <- 0 for(i in 1:ncol(d)){ whatcol[i] <-class(d[,i]) } whatcol #-------------------------------- > whatcol <- 0 > for(i in 1:ncol(d)){ + whatcol[i] <-class(d[,i]) + } > whatcol [1] "character" "character" "factor" "factor"
2009 May 15
1
Newbie question - force file permission to user's secondary groups.
samba version is 3.0.28a-1ubuntu4.7 -- I created users on both samba and the linux system, and created 3 groups on the system. Each of these groups own a specific directory, the directory on the filesystem belongs to root.groupfoo. On my smb.conf I gave each of these groups write access to its directory (@groupfoo to the share /groupfoo). So now every linux user belonging to groupfoo can write
2011 Feb 08
12
multiple puppetmasters (w/ Passenger) behind load balancer
Hello Gang, I''m working on scaling my puppet solution, and I''m deploying multiple masters w/ passenger that are going sit behind a load balancer. If anyone is using these type of setup, would you share how you deal with the SSL certs? I''ve been following Bode''s Blog (http://bodepd.com/wordpress/?p=7), and it''s not working to good for me.
2014 Feb 26
2
error en ifelse
El problema puede estar en el no uso de suficientes paréntesis. Por ejemplo, con: > a=1 > b=0 > c=0 la instrucción ifelse(((a>1) | (b=0) | (c=1) | (d=1)), 11, 22) da el resultado esperado: [1] 11 Pero si se omiten los paréntesis se llega a un error de interpretación: destino de la asignación se expande a un objeto fuera del lenguaje Espero que sirva Jorge El 26/2/14, daniel