Displaying 12 results from an estimated 12 matches for "nume".
Did you mean:
name
2018 Mar 09
3
Contar categorías después de ciertos valores
Hola,
Estoy intentando averiguar cómo contar el número de categorías situadas después de ciertos valores. Por ejemplo, en el siguiente vector:
x <- c(3, "A", "B", 5, "A", 4, 5, "A", "A", 3)
el resultado que quisiera obtener es:
Valor -> Resultado
3 -> 1 A y 1 B
4 -> 0 A y 0 B
5 -> 3 A y 0 B
¿Alguien tiene alguna
2008 Jul 16
2
Group level frequencies
...1. I used tapply to get the (Group)mean of var1 and var2 in separate
Equations. The result will be two one-dimensional Array with rownames.
2. I Transformed the Arrays in two data.frames
3. I merged the data.frames
d.var1 <-
data.frame(id=rownames(tapply(data.ml$var1,data.ml$g,mean)),var1=as.nume
ric(tapply(data.ml$var1,data.ml$g,mean)))
d.var2 <-
data.frame(id=rownames(tapply(data.ml$var2,data.ml$g,mean)),var2=as.nume
ric(tapply(data.ml$var2,data.ml$g,mean)))
data.gl <- d.var1
data.gl$var2 <- d.var2$var2
By putting the data.frames d.var1 and d.var2 together in a new
data.frame...
2015 Jul 13
2
Crear datos aleatorios con restriciones
...uestions/31137940/randomly-assign-teachers-to-classrooms-imposing-restrictions/31143808#31143808>
produce un data frame `schoolGrade` con 240 observaciones y 7 variables. Mi
objetivo es poder generar un data frame asi pero con la flexibilidad de
poder usar n.classrooms <- 20 (o cualquier otro numero) en lugar de 4
(hardcoded)
Gracias de nuevo!
Ignacio
On Mon, Jul 13, 2015 at 5:54 PM Carlos Ortega <cof en qualityexcellence.es>
wrote:
> Hola,
>
> Esta es una forma de hacerlo, evitando bucles....
>
>
> #-------------------------------------------------------------...
2015 Jul 13
2
Crear datos aleatorios con restriciones
Hola,
0. La falta de 'elegancia' hace que sea mas dificil hacer cambios al
codigo. Por ejemplo cambiar n.classrooms <- 4 a n.classrooms <- 20
1. Cuando tengo solo 4 puedo hacer esto:
schoolGrade$A <- Teachers$Teacher.ID[1:cuttoff1]
schoolGrade$B <- Teachers$Teacher.ID[1:cuttoff1]
schoolGrade$C <- Teachers$Teacher.ID[(cuttoff1+1):n.teachers]
schoolGrade$D <-
2005 Mar 08
1
samba WINS problem on 2 networked LANS using a VPN connection
...tring = Samba
interfaces = 192.168.1.65/27 192.168.1.63/28 127.0.0.1/8 10.1.0.2/24
bind interfaces only = yes
remote announce = 192.168.1.65/LAN2 192.168.1.49/LAN1
remote browse sync = 192.168.1.63 192.168.1.95 #broadcast address LAN1 and
LAN2
#politica de browsing si metoda de translatie ip->nume
announce as = NT
os level = 200
local master = yes
prefered master = yes
domain master = yes
name resolve order = wins
wins server = 192.168.1.49
Each Windows XP station from LAN2, has configured manually WINS server at
192.168.1.49.
Also, on each LAN workgroup, i can see and access router-LAN...
2015 Jul 13
2
Crear datos aleatorios con restriciones
...assign-teachers-to-classrooms-imposing-restrictions/31143808#31143808>
>> produce un data frame `schoolGrade` con 240 observaciones y 7 variables. Mi
>> objetivo es poder generar un data frame asi pero con la flexibilidad de
>> poder usar n.classrooms <- 20 (o cualquier otro numero) en lugar de 4
>> (hardcoded)
>>
>> Gracias de nuevo!
>>
>> Ignacio
>>
>>
>>
>>
>> On Mon, Jul 13, 2015 at 5:54 PM Carlos Ortega <cof en qualityexcellence.es>
>> wrote:
>>
>>> Hola,
>>>
>>> Es...
2006 Jan 13
3
FastAGI Command Execution
I've noticed that with FastAGI (and maybe AGI) that when you sequentially send a sequence of dial commands, if the call is picked up, that after the call ends, the Fast AGI script keeps executing the commands!
Is there anyway to stop execution once a call is picked up? I think looking at the result codes after the Dial to determine if the call was picked up or not is not a good idea... if it
2003 Nov 20
2
Cannot do international dial with E1 in Spain
...on: Public network serving the local user (2)
< Ext: 1 Progress Description: Inband
information or appropriate pattern now available. (8) ]
< Display (len=18) [ < Display (len=18) [ N< Display (len=18) [ NU< Display
(len=18) [ NUM< Display (len=18) [ NUME< Display (len=18) [ NUMER< Display
(len=18) [ NUMERO< Display (len=18) [ NUMERO < Display (len=18) [ NUMERO N<
Display (len=18) [ NUMERO NO< Display (len=18) [ NUMERO NO < Display
(len=18) [ NUMERO NO A< Display (len=18) [ NUMERO NO AS< Display (len=18)
[ NUMERO NO ASI<...
2006 Aug 02
2
PDC problem
...mention that my Samba server is a production server with
~100 simultaneous users (2000 User accounts in LDAP).
We use Samba 3.0.22 and openldap 2.3.
My smb.conf file is (the comments are in romanian :) ):
#==================== Setari globale ===================
[global]
; Numele domeniului
workgroup = Terra
; Numele serverului vizibil din retea
netbios name = BLUE
; Descrierea serverului: NT Description
server string = Free Windows V1.2a
;===== Setari legate de jurnal!
; Tin un log separat pentru fiecare masina i...
2009 Jun 25
2
Problems with subsets in NLME
I am trying to estimate models with subsets using the NLME package. However, I am getting an error in the case below (among others):
> subset <- c(rep(TRUE, 107), FALSE)
> fm2 <- lme(distance ~ age + Sex, data = Orthodont, random = ~ 1, subset=subset)
Error in xj[i] : invalid subscript type 'closure'
> fm2 <- lme(distance ~ age + Sex, data = Orthodont, random = ~ 1,
2010 Aug 05
6
64-bit R on 64-bit Windows box... Still not enough memory?!
I have a 64-bit windows box -
Intel Xeon CPU E7340 @ 2.4GHz 31.9GB of RAM
I have R 2.11.1 (64bit) running on it.
My csv data is 3.6 GB (with about 15 million obs, 120 variables.)
------------------------------------------------
I have successfully imported the data above into R. No problem.
Now I am trying to run 'rpart' on my data. But I got the following error :
Error: cannot
2007 May 30
16
Shorewall recipe BETA, need comments !!
Hello community !
I have posted here my shorewall recipe:
http://reductivelabs.com/trac/puppet/wiki/AqueosShorewall
If anyone is interested please test and comment to see if we can
improve it ! :)
I also updated my facter recipe for VERIO vps servers if anyone
interested... :)
http://reductivelabs.com/trac/puppet/wiki/AqueosFacterVps
Hope that helps !
--
Cordialement,
Ghislain