Displaying 20 results from an estimated 1381 matches for "tl".
Did you mean:
  tlb
  
2001 Feb 08
2
dnbinom(,size<1,)=0 (PR#842)
This came up on r-help but indicates a bug.
dnbinom(x,n,p) calls dbinom_raw(n-1,...)
which returns 0 for n<1.
	-thomas
---------- Forwarded message ----------
Date: Thu, 08 Feb 2001 17:10:23 +0000
From: Yudi Pawitan <yudi@stat.ucc.ie>
To: Mark Myatt <mark@myatt.demon.co.uk>
Cc: R-Help <r-help@stat.math.ethz.ch>
Subject: Re: [R] Goodness of fit to Poisson / NegBinomial
2004 Jun 29
1
Accounts are getting dsiabled
Hi
I have a problem with samba 3.0.5pre1.
Many of my users are disabled by samba
and I can't find the reason why.
Here is an example of an user disbled by samba:
Unix username:        christ
NT username:          christ
Account Flags:        [DU         ]
User SID:             S-1-5-21-3371203057-3264423045-2392767973-4030
Primary Group SID:    S-1-5-21-3371203057-3264423045-2392767973-1213
2000 Sep 29
1
Two tcltk questions and Re: tcltk package functionality
...ion in R which uses tcltk package .... essentially I wanted
> to give within that function, a widget with 2 radiobuttons to choose
> between plotting Precip and Temperature plots. After the user has chosen
> one of the radiobuttons there is another widget that asking him to identify
> outliers. However, I am having a lot of problems...what R does is evaluate
> the whole function without pausing...if I introduce a while() loop as I
> have in the example below, R does nothing until I hit cntrl-c upon which it
> shows the widget and comes out of the function......I could use a...
2013 Jul 24
1
Understanding modification in place
...x <- 1:3
.Internal(inspect(x))
x[2] <- 1L
.Internal(inspect(x))
message("In function")
(function() {
  x <- 1:3
  .Internal(inspect(x))
  x[2] <- 1L
  .Internal(inspect(x))
})()
If I run it from the command line, I get:
Global
@1050bb840 13 INTSXP g0c2 [MARK,NAM(1)] (len=3, tl=0) 1,2,3
@1050bb840 13 INTSXP g0c2 [MARK,NAM(1)] (len=3, tl=0) 1,1,3
In function
@1050bb190 13 INTSXP g0c2 [NAM(1)] (len=3, tl=0) 1,2,3
@1050bb190 13 INTSXP g0c2 [NAM(1)] (len=3, tl=0) 1,1,3
i.e. both modifications occur in place.
If I put it in a file and source() it, I get:
Global
@1050bb318 1...
2013 Jan 24
1
Copy on assignment and .Internal(inspect())
...) in order
to detect vector copying.
Take for example the following silly code:
f <- function() {
  x = seq(10)
  print(.Internal(inspect(x)))
  for(i in seq(10)) {
    x[i] <- x[i] + 1
    print(.Internal(inspect(x)))
  }
}
The output of f() was:
@bd7acf0 13 INTSXP g0c4 [NAM(1)] (len=10, tl=0) 1,2,3,4,5,...
 [1]  1  2  3  4  5  6  7  8  9 10
@bdd6f80 14 REALSXP g0c6 [NAM(1)] (len=10, tl=0) 2,2,3,4,5,...
 [1]  2  2  3  4  5  6  7  8  9 10
@ba66278 14 REALSXP g0c6 [NAM(1)] (len=10, tl=0) 2,3,3,4,5,...
 [1]  2  3  3  4  5  6  7  8  9 10
@ba661e0 14 REALSXP g0c6 [NAM(1)] (len=10, tl=0) 2,...
2000 Nov 27
1
(NA || x) and (NA && y) {another "bug" } (PR#749)
>>>>> "TL" == Thomas Lumley <thomas@biostat.washington.edu> writes:
on Subject: Re: [Rd] Problem with NAs using chisq.test() (PR#748)
which I've changed, since it is another bug we are talking about now
    TL> On Sun, 26 Nov 2000 kjetikj@astro.uio.no wrote:
    >> Full_Name: Kjetil...
2019 Jul 23
3
Any plans for ALTREP lists (VECSXP)?
...-memory list
(1.1 MB real | 543.3 MB virtual)
> system.time(y <- as.list(x))
   user  system elapsed
  1.116   2.175   5.053
> system.time(z <- as.altrep(x))
   user  system elapsed
 36.295   4.717  41.216
> .Internal(inspect(y))
@108255000 19 VECSXP g1c7 [MARK,NAM(7)] (len=34840, tl=0)
  @7f9044d9fc00 14 REALSXP g1c7 [MARK] (len=1129, tl=0) 404.093,404.096,404.099,404.102,404.105,...
  @7f9044d25e00 14 REALSXP g1c7 [MARK] (len=890, tl=0) 409.924,409.927,409.931,409.934,409.937,...
  @7f9044da6000 14 REALSXP g1c7 [MARK] (len=1878, tl=0) 400.3,400.303,400.306,400.309,400.312,......
2002 Nov 13
0
Welch versus Satterthwaith (PR#2111)
>>>>> "TL" == Thomas Lumley <tlumley@u.washington.edu>
>>>>>     on Sun, 6 Oct 2002 09:19:27 -0700 (PDT) writes:
    TL> On Sat, 5 Oct 2002 roxburg@kih.net wrote:
    >> This is not a bug report but didn't see another way to
    >> ask a question.
    TL> Wel...
1998 Oct 14
0
P values option
(From original R-help, then  R-core discussion;
 this is potentially of interest to more people. MM)
    JL>  2. meaningless P-values and stars by default in summary(glm())
    TL> The default of stars is easily changed in a site-level profile,
    TL> which can be given to students if you are worried about their minds
    TL> being contaminated by stars. I'm going to do this on the
    TL> installation here.
    TL> 
    TL> Perhaps we should have an o...
2013 Aug 02
1
[LLVMdev] replacing GetElementPtrConstantExpr with GetElementPtrInst ... sometimes
....
(Other constant expression ignored for now).
My attempt (example code below) has revealed my lack of understanding of llvm.
For one thing I need to distinguish when the GetElementPtrConstantExpr is a child of an instruction and hence can be changed into an instruction itself.
When offered:
    @tl = external thread_local global [1 x i32]
    define i32* @tli () {
        ret i32* getelementptr([1 x i32]* @tl, i32 0, i32 0)
    }
the example code prints:
    @tl = external thread_local global [1 x i32]
    ConstantExpr ops...
    @tl = external thread_local global [1 x i32]
    i32 0
    i32...
2002 Aug 23
1
3.4p1 ssh-agent auth-retry patch available: was: Re: Updated ssh-agent authentication retry patch available
And lsof the agent too - see what files it has open...
Nico
-- 
> -----Original Message-----
> From: Kevin Steves [mailto:kevin at atomicgears.com]
> Sent: Friday, August 23, 2002 4:48 PM
> To: openssh-unix-dev at mindrot.org
> Cc: stevesk at pobox.com
> Subject: Re: 3.4p1 ssh-agent auth-retry patch available: was: Re:
> Updated ssh-agent authentication retry patch available
1998 Apr 09
1
0-extent matrices?
...expect that the same C code would usually work.
Thomas Lumley
------------------------------------------------------+------
Biostatistics		: "Never attribute to malice what  :
Uni of Washington	:  can be adequately explained by  :
Box 357232		:  incompetence" - Hanlon's Razor  :
Seattle WA 98195-7232	:				   :
------------------------------------------------------------
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-devel mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html
Send "info", "help", or "[un]...
2009 Jul 10
2
IF STATEMENTS
Hello,
I am working on using if statements.  What  is the error message telling 
me here and how do I correct for it?
I have tried various combinations of quotes.
Thank you.
Sincerely,
Mary A. Marion
#Find critical values
crit<-function(n,alpha,type)
{
if (type==twoSided)
{
alpha2=alpha/2
tL<-qt(alpha2,n-1)
tU<-qt(1-alpha2,n-1)
}
if (type==Lower)
{
 tL<- -9999
 tU<-qt(1-alpha,n-1)
}
if (type==Upper)   
{
tL<-qt(alpha,n-1)
tU<- 9999
}
criticalValues<-c(tL,tU)
round(criticalValues,3)
}
crit(n=50,alpha=.05,type=twoSided)
Error in crit(n = 50, alpha = 0.05, type = twoS...
1998 Jan 05
1
unary !
[spill over from  R-core]
>>>>> "TL" == Thomas Lumley <thomas@biostat.washington.edu> writes:
    TL> On Sun, 4 Jan 1998, Kurt Hornik wrote:
    >> Another thing I noticed when playing with chron is that apparently
    >> code like if (!(length(value)) works in S but not in R.  The error
    >> in R i...
2008 Jul 22
1
tklistbox and extracting selection to R
Dear experts,
   I am trying to understand why is it that when I paste (into the R console) the following code to select an option from a list:
  require(tcltk)
  tt<-tktoplevel()
  tl<-tklistbox(tt,height=ntx,selectmode="single",background="white")
  tkgrid(tklabel(tt,text="Select the legend of" ))
  tkgrid(tl)
  treatments<<-levels.tx
  for(i in (1:ntx))
  {
      tkinsert(tl,"end",treatments[i])
  }
  OnOK<-function()
  {...
2011 Nov 24
1
Confused about NAMED
...I expected NAMED to be 1 in all these three cases. It is for one of them,
but not the other two?
> R --vanilla
R version 2.14.0 (2011-10-31)
Platform: i386-pc-mingw32/i386 (32-bit)
> x = 1L
> .Internal(inspect(x))   # why NAM(2)? expected NAM(1)
@2514aa0 13 INTSXP g0c1 [NAM(2)] (len=1, tl=0) 1
> y = 1:10
> .Internal(inspect(y))   # NAM(1) as expected but why different to x?
@272f788 13 INTSXP g0c4 [NAM(1)] (len=10, tl=0) 1,2,3,4,5,...
> z = data.frame()
> .Internal(inspect(z))   # why NAM(2)? expected NAM(1)
@24fc28c 19 VECSXP g0c0 [OBJ,NAM(2),ATT] (len=0, tl=0)
ATTRIB...
2019 Jul 17
2
ALTREP wrappers and factors
...t;
> .Internal(inspect(y))
@7fb0ce78c0f0 13 INTSXP g0c0 [NAM(7)] matter vector (mode=3, len=3, mem=0)
Here is what I get without a wrapper:
> fc1 <- structure(y, class="factor", levels=levels(x))
> .Internal(inspect(fc1))
@7fb0cae66408 13 INTSXP g0c2 [OBJ,NAM(2),ATT] (len=3, tl=0) 1,1,2
ATTRIB:
  @7fb0ce771868 02 LISTSXP g0c0 []
    TAG: @7fb0c80043d0 01 SYMSXP g1c0 [MARK,LCK,gp=0x4000] "class" (has value)
    @7fb0c9fcbe90 16 STRSXP g0c1 [NAM(7)] (len=1, tl=0)
      @7fb0c80841a0 09 CHARSXP g1c1 [MARK,gp=0x61] [ASCII] [cached] "factor"
    TAG: @7fb0c...
2019 Jul 18
0
ALTREP wrappers and factors
...My guess is that *matter:::as.altrep* function assigned the variable *y* to
a local variable so that it increases the reference number. For example:
*This would not cause a duplication*
> > a=c(1,2,3)
> > .Internal(inspect(a))
> @0x000000002384f530 14 REALSXP g0c3 [NAM(1)] (len=3, tl=0) 1,2,3
> > attr(a,"dim")=c(1,3)
> > .Internal(inspect(a))
> @0x000000002384f530 14 REALSXP g0c3 [NAM(1),ATT] (len=3, tl=0) 1,2,3
> ATTRIB:
>   @0x0000000023864b58 02 LISTSXP g0c0 []
>     TAG: @0x00000000044b1a90 01 SYMSXP g1c0 [MARK,LCK,gp=0x4000] "dim"...
2008 Nov 23
1
tklistbox - R-Objekt
Hello, I have a problem with a tklistbox. The user should be able to choose
one out of two calculation methods needed for further calculations. My
r-script for that purpose looks like that:
    require(tcltk)
    tt<-tktoplevel()
    tl<-tklistbox(tt,height=4,selectmode="single",background="white")
    tkgrid(tklabel(tt,text="select method for LAI calculation"))
    tkgrid(tl)
    method<- c("method1","method2")
    for (i in (1:2)){
        tkinsert(tl,"end",method...
2014 Apr 02
0
special handling of row.names
...nk there is an inconsistency in the handling of the compact form of the row.names attributes. 
When n is the number of rows of a data.frame, the compact form is c(NA_integer_,-n), as in: 
> d <- data.frame(x=1:10)
> .Internal(inspect(d))
@104f174a8 19 VECSXP g0c1 [OBJ,NAM(2),ATT] (len=1, tl=0)
  @103a7dc60 13 INTSXP g0c4 [] (len=10, tl=0) 1,2,3,4,5,...
ATTRIB:
  @104959380 02 LISTSXP g0c0 []
    TAG: @100823078 01 SYMSXP g1c0 [MARK,LCK,gp=0x4000] "names" (has value)
    @104f17748 16 STRSXP g0c1 [NAM(2)] (len=1, tl=0)
      @10085c678 09 CHARSXP g1c1 [MARK,gp=0x61] [ASCII] [...