search for: groupid

Displaying 20 results from an estimated 115 matches for "groupid".

Did you mean: grouped
2009 Dec 22
3
vector indexing problem in multilevel data: assigning a specific value to all group members
...members of the group. For example, I have a group leader (identified by a binary vector) and some attribute for all group members. I want to create a new vector that holds the attribute of the group leader for each individual in the data frame (code at the bottom of the post): personId groupId groupLeader someAttribute leaderAttribute 1 1 17 0 0.145833333 NA 2 2 17 1 0.218750000 NA 3 3 17 0 0.089743590 NA 4 4 22 0 0.003875969 NA 5 5...
2008 Aug 01
3
Newbie question: How to use tapply() on several vectors simultaneously
...umentation and searching the archive. I have a data.frame containing experimental data from a group experiment in psychology. Each line represents a single participant, but participants were assigned to groups of three or four persons. One variable indicates each participants' group number (groupID). For a large number of variables, I would like to obtain the mean group value. I figured I use tapply() in the fashion of tapply(variable, groupID, mean), but that would be a tiresome task for my 150 variables. I am thus looking for a way to obtain a data.frame that contains one row for each...
2010 Mar 22
0
using lmer weights argument to represent heteroskedasticity
...EXAMPLE: generate balanced nested data with heteroskedastic errors of ## variance 0.5, 1, 2, or 4 ############################################################################### ngroup <- 50 npergroup <- 20 n <- ngroup*npergroup set.seed(5046) d <- data.frame(unitid = 1:n, groupid = rep(1:ngroup, each=npergroup), verror = sample(c(0.5, 1, 2, 4), size=n, replace=T), x = 0.1*rnorm(n)) groupeffx <- data.frame(groupid = 1:ngroup, theta = rnorm(ngroup, sd = 0.25)) d <- merge(d, groupeffx) d$etrue <- rnorm(n, sd = sqrt(d$verror)) d$y <- 5 + d$x + d$thet...
2003 Jun 30
0
High cpu load
...D USER PR NI VIRT RES SHR S %CPU %MEM TIME+ Command 15915 xxx 25 0 3168 2828 2268 R 91.9 1.1 22:58.51 smbd SMBSTATUS ======== Samba version 2.2.8a-SuSE Service uid gid pid machine ---------------------------------------------- user user groupid 15915 w00a0245751e0 (192.168.246.80) Mon Jun 30 09:30:18 2003 user user groupid 15977 w00a0245751e0 (192.168.246.80) Mon Jun 30 09:31:38 2003 applicatie user groupid 15915 w00a0245751e0 (192.168.246.80) Mon Jun 30 09:30:21 2003 applicatie user groupid 15977 w00...
2002 May 31
0
Convergence and singularity in glmmPQL
Greetings- Using R 1.5.0 under linux and the latest MASS and nlme, I am trying to develop a three-level (two levels of nesting) model with a dichotomous oucome variable. The unconditional model is thus: > doubt1.pql<-glmmPQL(fixed = r.info.doubt ~ 1, random = ~1 | groupid/participantid, + family = binomial, data = fgdata.10statements.df) iteration 1 iteration 2 iteration 3 iteration 4 iteration 5 > summary(doubt1.pql) Linear mixed-effects model fit by maximum likelihood Data: fgdata.10statements.df AIC BIC logLik 35838.51 35864.14 -17915.2...
2012 Aug 10
1
virtio-scsi <-> vhost multi lun/adapter performance results with 3.6-rc0
...Capabilities: [40] MSI-X: Enable+ Count=2 Masked- Kernel driver in use: virtio-pci -------------- next part -------------- randrw: (g=0): rw=randrw, bs=4K-4K/4K-4K, ioengine=libaio, iodepth=64 ... randrw: (g=0): rw=randrw, bs=4K-4K/4K-4K, ioengine=libaio, iodepth=64 Starting 8 processes randrw: (groupid=0, jobs=1): err= 0: pid=7155 read : io=384MB, bw=62,934KB/s, iops=15,733, runt= 6243msec slat (usec): min=4, max=11,681, avg=167.00, stdev=448.35 clat (usec): min=3, max=19,552, avg=2217.48, stdev=1367.27 bw (KB/s) : min= 0, max=70143, per=1.27%, avg=6362.85, stdev=19236.22 writ...
2012 Aug 10
1
virtio-scsi <-> vhost multi lun/adapter performance results with 3.6-rc0
...Capabilities: [40] MSI-X: Enable+ Count=2 Masked- Kernel driver in use: virtio-pci -------------- next part -------------- randrw: (g=0): rw=randrw, bs=4K-4K/4K-4K, ioengine=libaio, iodepth=64 ... randrw: (g=0): rw=randrw, bs=4K-4K/4K-4K, ioengine=libaio, iodepth=64 Starting 8 processes randrw: (groupid=0, jobs=1): err= 0: pid=7155 read : io=384MB, bw=62,934KB/s, iops=15,733, runt= 6243msec slat (usec): min=4, max=11,681, avg=167.00, stdev=448.35 clat (usec): min=3, max=19,552, avg=2217.48, stdev=1367.27 bw (KB/s) : min= 0, max=70143, per=1.27%, avg=6362.85, stdev=19236.22 writ...
2017 Jun 22
3
two domain members, different groupIDs
...ig domain : backend = rid idmap config domain : range = 10000-20000 idmap config domain : base_rid = 0 idmap config * : backend = tdb # wbinfo --group-info=domänen-benutzer domänen-benutzer:x:10008: I understand/assume that the different idmap configs might cause the mismatch in the mapped(?) groupids. Can I fix that without breaking things? On which server? ... oh my, I checked a 3rd one for reference: # wbinfo --group-info=domänen-benutzer domänen-benutzer:x:10027: :-(
2010 Aug 23
2
lmer() causes segfault
...s in these slopes with individual-level and group-level characteristics. Thus, I have hierarchic data with three levels (measurement time, individual, group). With lme() (from the nlme package), this is my first simple model: mod1 <- lme(fixed = performance ~ time, random = ~ 1 + time | GroupID/StudentNumber, data = dataset.long, na.action = na.omit) It fits to the data well. I tried to specify the same model in lmer(): detach("package:nlme") library(lme4) mod1 <- lmer(performance ~ time + (time | GroupID/StudentNumber), data = dataset.long, na.action = na.omit) H...
2017 Jun 22
0
two domain members, different groupIDs
On Thu, 22 Jun 2017 12:56:25 +0200 "Stefan G. Weichinger via samba" <samba at lists.samba.org> wrote: > Am 2017-06-22 um 10:44 schrieb Rowland Penny via samba: > > >> Can I fix that without breaking things? > > > > If your users have files stored on the domain members, probably not. > > I understand that this just creates the need to run some
2017 Jun 26
0
two domain members, different groupIDs
On Mon, 26 Jun 2017 08:52:04 +0200 "Stefan G. Weichinger via samba" <samba at lists.samba.org> wrote: > Am 2017-06-22 um 13:10 schrieb Rowland Penny via samba: > > On Thu, 22 Jun 2017 12:56:25 +0200 > > "Stefan G. Weichinger via samba" <samba at lists.samba.org> wrote: > > > >> Am 2017-06-22 um 10:44 schrieb Rowland Penny via samba:
2002 Jun 21
0
Interpreting output from glmmPQL
...and the individual level) with dichotomous outcomes. There are several statistics of interest; for the moment, I have two specific questions: 1.) This question refers to the following model (I present first the call, then the output of summary(): morality.restr.1.pql<-glmmPQL(random = ~ 1 | groupid/participantid, fixed = r.logic.morality ~ 1, data = fgdata.df[coded.logic,], na.action=na.omit, niter=50, family=binomial) Linear mixed-effects mo...
2017 Jan 25
4
why "DEFAULT" ?
Hello, Rsync. --log-file-format="|%i|%B|%U|%G|%l|[%M]|// %n" After backup log to get this line: 2017/01/25 17:30:09 [8781] |hf |rw-r--r--|500|DEFAULT|83875|[2014/02/10-18:22:09]|// xml_error.txt groupID = DEFAULT The server looks like this: ls -lan | grep xml_error.txt -rw-r--r-- 1 500 1002 83875 Фев 10 2014 xml_error.txt groupID = 1002 The documentation is written: https://download.samba.org/pub/rsync/rsyncd.conf.html %G the gid of the file (decimal) or "DEFAULT" Why "D...
2008 May 23
3
Percentages for categorical data by group
...o be able to calculate the percentage of each group that choose each response. For example I want to know what percentage of group 1 (which may have a value of 34456) choose response 1 and so on. Here is some code I wrote that generates a data frame like the one I have. pop <- matrix(1:100000) groupIDs <- sample(pop,500) groupVar <- sample(groupIDs,23000,replace=TRUE) responseVar <- sample(1:5,23000,replace=TRUE) example.data <- data.frame(groupVar,responseVar) Is there a fast way to calculate these percentages beyond writing loops to manually count the responses for each of the gr...
2017 Jun 26
2
two domain members, different groupIDs
Am 2017-06-22 um 13:10 schrieb Rowland Penny via samba: > On Thu, 22 Jun 2017 12:56:25 +0200 > "Stefan G. Weichinger via samba" <samba at lists.samba.org> wrote: > >> Am 2017-06-22 um 10:44 schrieb Rowland Penny via samba: >> >>>> Can I fix that without breaking things? >>> >>> If your users have files stored on the domain
2017 Jun 22
2
two domain members, different groupIDs
Am 2017-06-22 um 10:44 schrieb Rowland Penny via samba: >> Can I fix that without breaking things? > > If your users have files stored on the domain members, probably not. I understand that this just creates the need to run some chown/chgrp-commands after correcting smb.conf and restarting samba? > Your 'idmap config' block on ALL Unix domain members needs to be >
2001 Dec 06
1
Inherit permissions in Samba2.2.2 on Debian ( potato )
if I set "inherit permissions = Yes" on my share, samba shuld set permisions for new files like uper directory - true? I'am asking because, I've set this parameter and nothing is going good. When I make new file in this share the groupID is set to user groupID whose create this file, but not the guid of the uper directory. The userID is set corectly. smb.conf: .... [test] path .... valid users ... browseable = Yes read only = no inherit permissions = Yes ..... Marcin Kowalski
2015 Aug 25
2
Icecast 2 on ubuntu 14 - service will not start using /etc/init.d
[This email is either empty or too large to be displayed at this time]
2004 Aug 06
2
icecast hangs at start
thanks for the reply. the problem is after i start icecast with icecast -c /path to icecast.xml, i see the following: Changed groupid to 501. Changed userid to 501. and then it just hangs. i do not get a command prompt or anything. so i was wondering if there are any other messages that normally follow during the startup process. <p>--- Karl Heyes <karl@xiph.org> wrote: > On Wed, 2004-01-14 at 21:59, jensen gal...
2014 Dec 01
0
No subject
...e what you mean about the absolute path to icecast.xml. In > which file? the /etc/init.d/icecast2 file? > > This is what is there: > > # Defaults > CONFIGFILE="/etc/icecast2/icecast.xml" > CONFIGDEFAULTFILE="/etc/default/icecast2" > USERID=icecast2 > GROUPID=icecast > ENABLE="false" > > could it be that it says USERID and GROUPID are icecast2 and icecast > respectively? > > > On 2015-08-25 10:31, Jeff wrote: > > greetings, > > > > > > On 08/25/2015 10:26 AM, Nick at 4points.ca wrote: > >>...