Displaying 20 results from an estimated 182 matches for "lll".
Did you mean:
ll
2013 Feb 01
2
Nested loop and output help
Hello Everyone,
My name is Thomas and I have been using R for one week. I recently found
your site and have been able to search the archives of posts. This has
given me some great information that has allowed me to craft an initial
design to an inquiry I would like to make into the breakdown of McNemar's
test. I have read an intro to R manual and the posting guides and hope I am
not violating
2017 Oct 31
2
Help with Nesting
How do i resolve this?
symbol <- c('RRR' ,'GGG')
for(i in seq_along(symbol)) {
dat <- Quandl("LLL/symbol[i]")
}
required solutionis a loop where Quandl is a function and it loops as flows,
Quandl("LLL/RRR")
Quandl("LLL/GGG")
2010 May 07
2
Problems with the IMAP proxy after upgrading from dovecot 1.1.16 to 1.211
...;0' as proxy_timeout, 'Y' as
nopassword, 'Y' as nodelay from accounts where user ='uid';
May 7 14:47:42 ttt dovecot: auth(default):
worker-server(uid,yyy.yyy.yyy.yyy): Aborted: Lookup timed out
May 7 14:47:42 ttt dovecot: auth-worker(default): mysql: Connected to
lll.lll.lll.lll (imapauth)
May 7 14:47:44 ttt dovecot: auth(default): client out:
FAIL^I1^Iuser=uid^Itemp
May 7 14:47:49 ttt dovecot: imap-login: Disconnected (auth failed, 1
attempts): user=<uid>, method=PLAIN, rip=yyy.yyy.yyy.yyy,
lip=xxx.xxx.xxx.xxx, TLS
May 7 14:48:26 ttt dovecot: au...
2001 Apr 05
1
PR#896
...n.x + n.y - 1))))
dz <- (dz - CORRECTION.CI)/SIGMA.CI
abs(dz - zq)
}
To examine the behivour I plotted the course of the wdiff for a lot of
d and three zq (0.05, 0.5, 0.95) and I let optimize to compute the
minimums. Then I plotted it.
mumin<-min(x)-max(y)
mumax<-max(x)-min(y)
lll<-seq(mumin,mumax,by=0.01)
wdl<-apply(cbind(lll),1,wdiff,zq=qnorm(0.05))
wdm<-apply(cbind(lll),1,wdiff,zq=qnorm(0.50))
wdu<-apply(cbind(lll),1,wdiff,zq=qnorm(0.95))
plot(lll,wdl,type="l")
lines(lll,wdm,lty=4)
lines(lll,wdu,lty=7)
ol<-optimize(wdiff,c(mumin,mumax),zq=qnorm...
2006 Jul 08
1
KhmaladzeTest
...; para saber como citar R o paquetes de R en publicaciones.
Escriba 'demo()' para demostraciones, 'help()' para el sistema on-line
de ayuda,
o 'help.start()' para abrir el sistema de ayuda HTML con su navegador.
Escriba 'q()' para salir de R.
> utils:::menuInstallLocal()
package 'quantreg' successfully unpacked and MD5 sums checked
updating HTML package descriptions
> utils:::menuInstallLocal()
package 'foreign' successfully unpacked and MD5 sums checked
updating HTML package descriptions
> utils:::menuInstallLocal()
package 'Rcmdr...
2007 Jan 09
3
dimensions of a all objects
Why will the following command not work
sapply(objects(),dim)
What does it say about the objects list? What does it say about the dim
command?
Likewise, the following also does not work
all<-ls()
for (f in all) print(dim(f))
--
Farrel Buchinsky
[[alternative HTML version deleted]]
2016 Apr 19
5
Ldapsearch against Samba 4
I'm setting up a test domain in order to try out Sudoers LDAP and have
run into a problem that has my puzzled. On our production domain I can
run a query such as:
ldapsearch -LLL -p389 -h DC -u me at ourdomain.com.au -W -X -LLL -b
"dc=ourdomain,dc=com,dc=au" -s sub
However, running an equivalent search on a freshly installed test
domain, using the exact same version of Samba and the same smb.conf
(with appropriate domain adjustments), I get the following error...
2009 Jun 10
1
Weird behavior in receive_data function
...ch = 0;
> for(l = 0; l < count; l++)
> {
> memset(buffer,0, 256);
> sprintf(buffer,"media-test-3MB-file/origin/test/test%02d.dat",l);
> printf("writting %s \n",buffer);
> fd = open(buffer, O_RDWR|O_CREAT|O_EXCL, S_IRUSR|S_IWUSR);
> for(lll = 0; lll < nSize; lll++)
> {
> for(mmm = 0; mmm < nAdjust; mmm++)
> {
> for(nnn = 0; nnn < nBlock; nnn++)
> {
> write_fhead_char(fd, &ch, 1);
> }
> ch++;
> }
> }
> }
> printf("origin files done!\n&...
1999 Oct 18
0
Date/time of formation of objects
....Data') for example, just about the only
advantage of overworking your disk other than error recovery that I can
think of. Assuming Unix of course.
Just a thought - along with the autosave when quiescent that I posted a
little while ago ...
John
lls<-function (pat = "")
{
lll <- ls(1, pat = pat)
for (i in 1:length(lll)) {
cat(formatC(eval(parse(t = paste("mode(", lll[i], ")"))),
1, 12), formatC(lll[i], 1, max(nchar(lll)) + 1),
eval(parse(t = paste("dimx(", lll[i], ")"))), "\n")...
2015 Oct 15
2
ldapsearch against Samba4 AD questions
...---------
Here the content of /etc/ldap/ldap.conf on client side:
----------------------------------------
TLS_REQCERT demand
BASE DC=SAMBA,DC=DOMAIN,DC=TLD
----------------------------------------
ldapsearch on 389 is working:
----------------------------------------
ldapsearch -LLL -p389 -h 10.156.248.238 cn=administrator -D
cn=administrator,cn=users,DC=samba,DC=domain,DC=tld -W
Enter LDAP Password:
dn: CN=Administrator,CN=Users,DC=samba,DC=domain,DC=tld
objectClass: top
objectClass: person
objectClass: organizationalPerson
objectClass: user
cn: Administrator
description: Bu...
2007 Apr 24
4
Size of an object in workspace
Hi folks,
Is there a function to show the size of an R object? eg. in Kbytes?
Couple months ago Bendix Carstensen posted this marvelous little function lls(), which shows all objects in the current workspace by mode, class and 'size'. This is a wonderful enhancement to the build-in ls() already and I now have it sourced in my Rprofile.site at startup.
The only drawback is,
2017 Sep 08
1
Optimize code to read text-file with digits
On 8 September 2017 at 11:25, PIKAL Petr <petr.pikal at precheza.cz> wrote:
> > Moller Skarbiniks Pedersen
> My program which is slow looks like this:
> >
> > filename <- "digits.txt"
> > lines <- readLines(filename)
>
> why you do not read a file as a whole e.g. by
>
> lines<-read.table("digits.txt")
>
Good idea.
2019 Aug 23
0
Problem with sync user account from Samba Master to Samba Slave
...er create steave ste at ave.10 --mail-address "steave at domain.com" --given-name "Steave" --must-change-at-next-login
> User 'steave' created successfully
>
> [???????.]
>
>
> Search in samba-ad
>
> [???????.]
> root at samba-ad:~# ldapsearch -LLL -x -H ldap://10.13.xxx.xxx -b "DC=domain,DC=com" -D "CN=administrator,CN=Users,DC=domain,DC=com" -wMyP at ssword "(sAMAccountName=steave)"
> dn: CN=Steave,CN=Users,DC=domain,DC=com
> objectClass: top
> objectClass: person
> objectClass: organizationalPerso...
2015 Oct 15
0
ldapsearch against Samba4 AD questions
Things goes further. To use GSSAPI and so the Kerberos ticket obtained with
kinit I was missing "-Y GSSAPI".
It seems GSSAPI and TLS are meant to be used together:
----------------------------------------
ldapsearch -Y GSSAPI -LLL -H ldaps://SAMBA.DOMAIN.TLD
SASL/GSSAPI authentication started
ldap_sasl_interactive_bind_s: Server is unwilling to perform (53)
additional info: SASL:[GSSAPI]: Sign or Seal are not allowed if TLS
is used
----------------------------------------
So, the same using ldap:// rather than ldaps...
2002 Oct 29
3
HTB/IMQ with GRE bug
...et dangerous(seems to be)
warnings flooding up.
Any Idea about this? I''m using RedHat release kernel-2.4.18-3 with your
patches
imq-2.4.18.diff-10.txt and htb3.6_2.4.17.diff
In case if you need my detail network setup configuration...
My Tunnel configurations are following
LOCAL-IP=202.LLL.IP.148
REMOTE-IP=202.RRR.IP.4
TUNNEL-IP=202.TUN.IP.254
[root@linux /root]# route -n
202.LLL.IP.148 0.0.0.0 255.255.255.255 UH 0 0 0 eth1
202.INT.IP.1 0.0.0.0 255.255.255.255 UH 0 0 0 eth0
202.RRR.IP.0 202.LLL.IP.147 255.255.255.248 UG 0 0 0 eth1
202.LLL.IP.144...
2016 Apr 19
2
Ldapsearch against Samba 4
...n Tue, 2016-04-19 at 10:29 +1000, John Gardeniers wrote:
>> I'm setting up a test domain in order to try out Sudoers LDAP and
>> have
>> run into a problem that has my puzzled. On our production domain I
>> can
>> run a query such as:
>>
>> ldapsearch -LLL -p389 -h DC -u me at ourdomain.com.au -W -X -LLL -b
>> "dc=ourdomain,dc=com,dc=au" -s sub
>>
>> However, running an equivalent search on a freshly installed test
>> domain, using the exact same version of Samba and the same smb.conf
>> (with appropriate domai...
2006 Mar 11
2
weird! QDA does not depend on priors?
Hi all,
If I run LDA on the same data (2-class classification) with default(no
priors specified in the lda function) vs. "prior=c(0.5, 0.5)", the results
are different.
The (0.5, 0.5) priors give better 1-classify-to-1 rate, and the proportional
priors(default, no priors specified in the lda function) give better
0-classify-to-0 rate, for both training and testing data sets.
However,
2015 Oct 15
2
ldapsearch against Samba4 AD questions
...lt;infractory at gmail.com>:
> Things goes further. To use GSSAPI and so the Kerberos ticket obtained
> with kinit I was missing "-Y GSSAPI".
>
> It seems GSSAPI and TLS are meant to be used together:
> ----------------------------------------
> ldapsearch -Y GSSAPI -LLL -H ldaps://SAMBA.DOMAIN.TLD
> SASL/GSSAPI authentication started
> ldap_sasl_interactive_bind_s: Server is unwilling to perform (53)
> additional info: SASL:[GSSAPI]: Sign or Seal are not allowed if
> TLS is used
> ----------------------------------------
>
> So, the sa...
2009 Dec 15
3
comparison of these types is not implemented
Hi All,
Can you tell me why I get the error message below? It's driving me nuts.
Thanks,
Tom
> r_squared
[[1]]
[1] 0.9083936
[[2]]
[1] 0.8871647
[[3]]
[1] 0.8193883
[[4]]
[1] 0.728157
[[5]]
[1] 0.8849525
[[6]]
[1] 0.8459416
[[7]]
[1] 0.6702318
[[8]]
[1] 0.02997816
[[9]]
[1] 0.8974268
[[10]]
[1] 0.881217
[[11]]
[1] 0.8006688
[[12]]
[1] 0.7207697
[[13]]
[1] 0.8703734
[[14]]
2017 Oct 20
1
create a loop
...ot;A", "B", "C"
), class = "factor"), totalP = c(250L, 375L, 180L), sampled = c(25L,
37L, 27L)), .Names = c("group", "total.pop", "sampled.pop"), class =
"data.frame", row.names = c(NA,
-3L))
##
idx <- 1:nrow(dat1)
lll <- split(idx, dat1$group)
##########################
#Replication 1 create a resampled data
############################
Replication1<-dat1[unlist(lapply(lll, sample, rep=TRUE)),]
Summary.Rep1<-ddply(Replication1, c("group"), summarise,
N = length(group),
mean...