Displaying 20 results from an estimated 100 matches similar to: "predict nlme syntax"
2005 Apr 25
4
panel ordering in nlme and augPred plots
Dear all
I am trying nlme together with Pinheiro/Bates book. I constructed
grouped data object with suitable plotting layout (according to
some common factor, panels from bottom to top are in increasing
order).
When I do nlme(... some stuff...) I get fitted object which I can plot
with
plot(augPred(fit.nlme6, level=0:1))
but it results in completely different ordering. Is there any way
2009 Aug 30
1
Trying to rename spatial pts data frame slot that isn't a slot()
Dear List,
I am analyzing the home range area of fish and seem to have lost the individuals ID names during my manipulations, and can't find out how to rename them. I calculated the MCP of the fish using mcp() in Adehabitat. MCP's were converted to spatial points data frame and exported to qGIS for manipulations. At this point the ID names were lost. I brought the manipulated
2009 Jan 29
4
Text in a character vector to indicate "ifelse" argument
Hello
I have a data set that looks like this;
> b2
dato chr status PRRSvac
PRRSsanVac PRRSsanDk PRRSdk
33 2007-12-03 090432 R?d SPF
34 2007-02-09 090432 R?d SPF+sanDK
35 2002-12-17 090432 R?d SPF+DK
36 2002-11-27 090432 R?d SPF+sanDK
37 2002-07-23
2017 Sep 05
3
BUILTIN\Administrators - failed to call wbcSidToUid: WBC_ERR_DOMAIN_NOT_FOUND
Thank you both, Rowland and Louis.
I'll try to answer you both and give you more info about our domain.
Generally:
In the past, we have Samba 3.5 NT4 domain on SLES server (designed ages
before, never upgraded). In 2015 I finally decided to migrate to Samba 4
AD. In those day it was 4.2. samba-tool ntacl sysvolcheck was ok, no
errors. AD worked (and working) as expected.
This summer, I
2006 Apr 19
2
adddriver: too many files - string overflow
Hello,
I need adddriver to samba network printer, but I have problem with too
many driver depend files in it. String with files is 1928 char long
I am receiving this message:
ERROR: string overflow by 1 (1024 - 1023) in safe_strcpy [adddriver
"Windows NT x86" "Canon PIXMA iP4000":CN]
this is my attempt:
rpcclient -U 'admin%passwd' -c 'adddriver "Windows NT
2007 Aug 08
1
LDAP and (py|cmu)sieve
Hello,
Before asking help, i would like thank Timo for this awesome server, it's
lite, fast, and has good features. I've read the Wiki, tutorials, and tried
various configurations to get the result I expect.
My company is running a dovecot 1.0.0 server set up with an LDAP directory,
mails are delivered to /var/spool/imap and users do not have a real unix home
directory on this
2017 Aug 10
0
Creating New Variable Using Ifelse
Hi
see in line
> -----Original Message-----
> From: R-help [mailto:r-help-bounces at r-project.org] On Behalf Of Courtney
> Benjamin
> Sent: Thursday, August 10, 2017 5:55 AM
> To: r-help at r-project.org
> Subject: [R] Creating New Variable Using Ifelse
>
> Hello R Help List,
>
> I am an R novice and trying to use the ifelse function to create a new binary
>
2007 Apr 16
3
Maildir, INDEX, and folders
I'm reading the wiki et el. regarding indexes, but can't come up with a
coherent answer to the setup and what will happen. I want to take the
indexes and move them off of NFS (~/Maildir) and place in
/var/spool/dovecot/indexes, but not have to hand create everything (user
homes, mail folders)
So, I create a parent folder /var/spool/dovecot/indexes that has the
appropriate permissions
2017 Sep 04
2
BUILTIN\Administrators - failed to call wbcSidToUid: WBC_ERR_DOMAIN_NOT_FOUND
Hello everyone.
I'm trying to fix sysvol rights, because i see errors in output of
/usr/bin/samba-tool ntacl sysvolcheck
ERROR(<class 'samba.provision.ProvisioningError'>): uncaught exception
- ProvisioningError: DB ACL on GPO directory
/var/lib/samba/sysvol/samdom.svmetal.cz/Policies/{6AC1786C-016F-11D2-945F-00C04FB984F9}
2008 Jul 31
0
[LLVMdev] llvm-gcc builds on 32 bit linux broken
I think this error is due to these changes:
Doing diffs in .:
--- ./gsyslimits.h.~1~ 2006-11-26 12:31:50.000000000 -0800
+++ ./gsyslimits.h 2007-04-02 12:37:38.000000000 -0700
@@ -4,5 +4,3 @@
instead of this text. */
#define _GCC_NEXT_LIMITS_H /* tell gcc's limits.h to recurse */
-#include_next <limits.h>
-#undef _GCC_NEXT_LIMITS_H
--- ./limitx.h.~1~ 2006-11-26
2008 Jul 30
3
[LLVMdev] llvm-gcc builds on 32 bit linux broken
Hi all,
I'm having some trouble building llvm-gcc as of today, with and without
bootstrap.
The error I get is:
/home/kooijman/src/llvm-gcc/obj/./gcc/xgcc
-B/home/kooijman/src/llvm-gcc/obj/./gcc/
-B/home/kooijman/src/llvm-gcc/obj/../install/i686-pc-linux-gnu/bin/
-B/home/kooijman/src/llvm-gcc/obj/../install/i686-pc-linux-gnu/lib/ -isystem
2007 Feb 09
1
subset function
Hello R-Users,
I have the following problem with the subset function:
See the following simple linear model. Here everything works fine:
>germany<-lm(RENT~AGE1, in.mi01)
However, if a use the same regression equation and only specify a subset, I
get an error message:
> berlin<-lm(RENT~AGE1, in.mi01, subset=C_X01=="Berlin")
Error in lm.fit(x, y, offset
2017 Aug 10
3
Creating New Variable Using Ifelse
Hello R Help List,
I am an R novice and trying to use the ifelse function to create a new binary variable based off of the responses of two other binary variables; NAs are involved. I pulled it off almost successfully, but when I checked the counts of my new variable for accuracy, I found that a small portion of the NA cases were not being passed through as NAs, but as "0" counts in my
2007 Feb 07
6
setting a number of values to NA over a data.frame.
This is probably a simple problem but I don't see a
solution.
I have a data.frame with a number of columns where I
would like 0 <- NA
thus I have df1[,144:157] <- NA if df1[, 144: 157] ==0
and df1[, 190:198] <- NA if df1[, 190:198] ==0
but I cannot figure out a way do this.
cata <- c( 1,1,6,1,1,NA)
catb <- c( 1,2,3,4,5,6)
doga <- c(3,5,3,6,4, 0)
dogb <- c(2,4,6,8,10,
2017 Sep 05
0
BUILTIN\Administrators - failed to call wbcSidToUid: WBC_ERR_DOMAIN_NOT_FOUND
Hai,
I leave the advice about the uid/gid numbering to Rowland, i can not give a good advice on that.
The script was made in such a way that it should not matter what uid/gids are where used.
The script looks them up for you, but it must be error free so we are sure what is set is correct.
If you look in the script, you see the four SID.
DC_SERVER_OPERATORS="S-1-5-32-549"
2002 May 28
1
'Corrupted check bytes on input' when connecting to 1.2.30 server
Hello,
I get this error when trying to connect to an ancient server from the 3.2.3p1
client on Linux 2.2 (OpenSSL 0.9.5):
[root at XXX openssh-3.2.3p1]# /usr/local/bin/ssh -vv LOGIN_STRIPPED at decef.elf.stuba.sk
OpenSSH_3.2.3p1, SSH protocols 1.5/2.0, OpenSSL 0x0090581f
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: Applying options for *
debug1: Rhosts Authentication disabled,
2012 Dec 18
1
windows 8 jointo samba 3 domain
Hi ...
I have problem join win 8 pro to samba domain
after patch registry
join to domain name XXXXXX work OK
bud join domain XXXX.YYY don't work
windows send only DNS request to SRV record
any Idea?
--
Alexandr Seidl
V?voj IT
RESAL spol. s r. o.
?len s?t? Orange& Green
Orange& Green ?st? nad Orlic?
M.R. ?tef?nika 264, 562 01 ?st? nad Orlic?
------------------------------
IBM
2008 Mar 31
0
No voice in one direction, SIP, call manager
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Hello,
I have a problem with Asterisk 1.4.x and the call manager. When I
originate a call by the call manager or by a dot-call file only the
calling party can hear the called party, not vice versa. When I dial the
same number directly from the SIP phone (Cisco 7960) everything is OK.
The same configuration worked with Asterisk 1.2 last week before
2018 Aug 21
1
Samba 4.8.4 + BIND 9.9.4 - possibility of nonsecure DNS updates
Hello everyone.
In our company we use Samba 4 for about 3 years (classic upgraded from
Samba 3.5 + LDAP to Sernet Samba 4.2). We used CentOS 6 for domain
controllers and with Bind bundled in this distro was impossible to use
dynamic DNS updates. And because I don't like using compiled SW on
production servers, we used Samba internal DNS, which worked well
(dynamic updates).
With one non
2009 Oct 27
2
[LLVMdev] msys/mingw32 llvm-gcc build errors
I successfully built llvm using msys/mingw, but I am getting the following
error when I try to build llvm-gcc using
$ ../llvm-gcc4.2-2.6.source/configure --prefix=/c/Temp/msys-llvm-gcc
--program-
prefix=llvm- --enable-llvm=/c/Temp/msys-llvm --enable-languages=c,c++
--disable
-shared
$make
--------------------------------------------------
gcc -c -g -DIN_GCC -W -Wall -Wwrite-strings