search for: attrributes

Displaying 6 results from an estimated 6 matches for "attrributes".

Did you mean: attributes
2009 Jul 31
1
scale subsets of grouped data in data frame
Hello, I'm trying to duplicate what's an easy process in RapidMiner. In RM, we can simply use two operators: subgroup iteration attribute value selection (Can use a regex for the attrribute name.) I can do this in R with a lot of code and manual steps. It would be really nice to find a more automated way. My data looks like this group group_height group_weight height
2018 Apr 02
2
Samba Domain server authentication
...i, The setup used to work on a when both file and AD were in the same box. We're trying to separate them. The 'net rpc testjoin' gives: Join to "LIN" is ok. The wbinfo -u does list all users with "LIN\username". The getent passwd lists the LIN\username with all the attrributes". This is after putting in your suggestions about winbind trusted domains only and use default domain option. Do I need to change anything on the the PDC side? nsswitch? On Mon, Apr 2, 2018 at 9:48 PM, Gaiseric Vandal via samba < samba at lists.samba.org> wrote: > Is this...
2008 Jul 15
9
Beginner Question.
I''m just getting into RoR, coming from a long PHP background. So far I LOVE IT! I''m hitting a roadblock with updating my mysql database. For simplicities sake, I have 2 tables and here are the relevant columns. Table Users id name email Table Issues id createdby assignedto reportedby In my models I have everything mapped properly I believe. When I try to update the
2005 Aug 18
1
RE: [PATCH] supporting non-NX/XD capable processors onx86_64 xenlinux
...TCH] supporting non-NX/XD capable processors > onx86_64 xenlinux > > > On 18 Aug 2005, at 05:29, Nakajima, Jun wrote: > > > I don''t have particular preference, but the latter one''s change is > > smaller, and it can fix other places (that are using the attrributes > > derived from __PAGE_KERNEL). But the former one is cleaner to me. If > > people agree, I can make such a patch. > > How does native x86/64 Linux avoid this problem? It doesn''t mask > __PAGE_KERNEL with __supported_pte_mask, so I''m reluctant to take this &...
2018 Apr 02
2
Samba Domain server authentication
Hi, We're having issues accessing shares from our Samba file server. If we try to access the share from a domain joined Windows machine, it prompts with enter username and password. If we supply the domain password it fails. The error that we get is the following. Failed to find a Unix account for peteruser 'lin\aadamson' (from session setup) not permitted to access this share (data)
2005 Nov 21
4
attributes of a data.frame
Dear all, I noticed that a data.frame has four attributes: - names - row.names - class - variable.labels While one can use the first three (i.e. names(foo) or class(foo)), the fourth one can only be used via: attributes(foo)$variable.labels (which is kind of a tedious thing to type) Is it or would be possible to simply use: variable.labels(foo) like the first three attributes? I tried: varlab