Displaying 20 results from an estimated 62 matches for "lewin".
Did you mean:
lewis
2001 Mar 10
2
FW: quick question
-----Original Message-----
From: Marcus Johnson [mailto:marjohns@uu.net]
Sent: Friday, March 09, 2001 10:18 PM
To: 'samba-patches@samba.org'
Subject: quick question
Hello,
Is there an updated Samba registry key that alows Windows 2000 machines map
to UNIX servers
the one I currently have, which is attached does not work with 2000 but
works with NT.
Marcus
2011 Jan 07
1
print.citation, small bug?
...le = style, ...)
invisible(x)
}
Then the default is still printing a citation, but other print methods are
available.
Thanks
Nicholas
--
"The bear and the goat were married and lived together until the end of
their days. Either the goat went mad or the bear became sane."
Nicholas Lewin-Koh
Genentech
[[alternative HTML version deleted]]
2000 May 24
9
quick question
If there a way to may samba "handle" files like ftp does during ascii transfers.
Changing the ^m to unix end of line markers
2001 Sep 18
1
case weights in coxph (survival)
...;
$minor
[1] "3.1"
$year
[1] "2001"
$month
[1] "08"
$day
[1] "31"
$language
[1] "R"
I am also using the most recent version of survival from cran.
Thanks
Nicholas
CH3
|
N Nicholas Lewin-Koh
/ \ Dept of Statistics
N----C C==O Program in Ecology and Evolutionary Biology
|| || | Iowa State University
|| || | Ames, IA 50011
CH C N--CH3 http://www.public.iastate.edu/~nlew...
2002 May 09
3
read.table (PR#1535)
I downloaded the latest version of R (1.5.0) and issued a read.table() command
that used to work with (1.3.1). Unfortunately I erased 1.3.1 from my hard
drive after I downloaded R 1.5.0.
Here's the command and the error message I get under 1.5.0:
>
golub1<-read.table("C:/Microarrays/code/data_set_ALL_AML_train.txt",sep="\t",q
2009 Sep 30
2
buglet in is.na?
Hi
the following example I think demonstrates the inconsistency
> f<-function(x) x
> length(f)
[1] 1
> is.na(f)
[1] FALSE
Warning message:
In is.na(f) : is.na() applied to non-(list or vector) of type 'closure'
The documentation states:
Arguments
x an R object to be tested.
value a suitable index vector for use with x.
And nowhere in the details was it implied (to me
2001 Sep 18
1
case weights-coxph (solved)
...ph(cph.call,z,grp.wt,na.action=na.omit,singular.ok=T)
sum(mod$residuals^2)
}
I wouldn't call this a bug, but shouldn't the case weights be a separate
vector if the user so desires?
Nicholas
CH3
|
N Nicholas Lewin-Koh
/ \ Dept of Statistics
N----C C==O Program in Ecology and Evolutionary Biology
|| || | Iowa State University
|| || | Ames, IA 50011
CH C N--CH3 http://www.public.iastate.edu/~nlew...
2000 Feb 03
2
use sysconf instead of NGROUPS_MAX
...TOH NGROUPS_MAX seems to be used incorrectly anyway:
source/smbd/password.c
#ifdef NGROUPS_MAX
if((groups = (gid_t *)malloc(sizeof(gid_t)*NGROUPS_MAX)) == NULL)
#else /* NGROUPS_MAX */
if((groups = (gid_t *)malloc(sizeof(gid_t)*ngroups)) == NULL)
#endif /* NGROUPS_MAX */
As Donald Lewine's POSIX book says: "The values returned by these
functions should be thought of as minimum guarantees. ... The values
returned by sysconf() and pathconf() are not suitable for allocating
memory."
Running samba on Linux only above-showed source/smbd/password.c seems
to be a problem...
2000 Sep 01
3
Object size in bytes
Hi,
Is there a command that will give the total size of an R object in bytes?
thanks
Nicholas
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html
Send "info", "help", or "[un]subscribe"
(in the "body", not the subject !) To: r-help-request at
2003 Apr 04
2
Bug in %in% (match)
Hi,
Am I hitting some limit in match? Consider the following example:
> tst<-seq(100,125,by=.2)%in%seq(0,800,by=.1)
> sum(tst)
[1] 76
> seq(100,125,by=.2)
[1] 100.0 100.2 100.4 100.6 100.8 101.0 101.2 101.4 101.6 101.8 102.0
102.2
[13] 102.4 102.6 102.8 103.0 103.2 103.4 103.6 103.8 104.0 104.2 104.4
104.6
[25] 104.8 105.0 105.2 105.4 105.6 105.8 106.0 106.2 106.4 106.6 106.8
2003 Apr 04
2
Bug in %in% (match)
Hi,
Am I hitting some limit in match? Consider the following example:
> tst<-seq(100,125,by=.2)%in%seq(0,800,by=.1)
> sum(tst)
[1] 76
> seq(100,125,by=.2)
[1] 100.0 100.2 100.4 100.6 100.8 101.0 101.2 101.4 101.6 101.8 102.0
102.2
[13] 102.4 102.6 102.8 103.0 103.2 103.4 103.6 103.8 104.0 104.2 104.4
104.6
[25] 104.8 105.0 105.2 105.4 105.6 105.8 106.0 106.2 106.4 106.6 106.8
2004 Jun 25
2
Matrix: Help with syntax and comparison with SparseM
Hi,
I am writing some basic smoothers in R for cleaning some spectral data.
I wanted to see if I could get close to matlab for speed, so I was
trying to compare SparseM
with Matrix to see which could do the choleski decomposition the
fastest.
Here is the function using SparseM
difsm <- function(y, lambda, d){
# Smoothing with a finite difference penalty
# y: signal to be smoothed
#
2010 Mar 01
2
Thougt I understood factors but??
Hi,
consider the following
> a<-gl(3,3,9)
> a
[1] 1 1 1 2 2 2 3 3 3
Levels: 1 2 3
> levels(a)<-3:1
> a
[1] 3 3 3 2 2 2 1 1 1
Levels: 3 2 1
> a<-gl(3,3,9)
> factor(a,levels=3:1)
[1] 1 1 1 2 2 2 3 3 3
Levels: 3 2 1
It is probably something obvious I missed, but reading the documentation
of factor, and levels I would have thought
that both should produce the same output as
2004 Oct 28
0
Package foreign_0.8-0 is on CRAN
There is an update for the `foreign' package now on the CRAN master and
soon on a mirror near you.
This adds support for
DBF files (by Nicholas Lewin-Koh, Roger Bivand and myself)
Systat files written on MS-DOS/Windows (by Roger Bivand)
The reasons for announcing this update are
1) People quite often ask for DBF support.
2) There is a `maptools' update that depends on getting this one.
3) We have tested many Systat and DBF files, and eve...
2000 Sep 07
1
getAttrb - Solved
Hi,
I changed
INTEGER(getAttrib(shape,mkChar("nParts")))[0]
to
INTEGER(getAttrib(shape,mkString("nParts")))[0]
and now it works fine.
Nicholas
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html
Send "info", "help", or "[un]subscribe"
(in the
2004 Oct 28
0
Package foreign_0.8-0 is on CRAN
There is an update for the `foreign' package now on the CRAN master and
soon on a mirror near you.
This adds support for
DBF files (by Nicholas Lewin-Koh, Roger Bivand and myself)
Systat files written on MS-DOS/Windows (by Roger Bivand)
The reasons for announcing this update are
1) People quite often ask for DBF support.
2) There is a `maptools' update that depends on getting this one.
3) We have tested many Systat and DBF files, and eve...
2005 Sep 08
1
clustering: Multivariate t mixtures
Hi,
Before I write code to do it does anyone know of code for fitting
mixtures of multivariate-t distributions.
I can't use McLachan's EMMIX code because the license is "For non
commercial use only".
I checked, mclust and flexmix but both only do Gaussian.
Thanks
Nicholas
1999 Jul 27
1
ESRI Shape reader
Well Dr. Ripley helped me solve the first problem, next question
I need to do some debugging now that the function loads properly
into R. I checked the S documentation and to use the C I/O functions
you need to include newredef.h, this file doesn't exist in /src/include.
How does this work in R? under S3.4 on a dec station i could use
fprintf(stdout,..);
fflush(stdout);
thanks,
Nicholas
PS
2002 May 28
1
Platform-specific: simple assignments in Rprofile cause core dump (PR#1604)
This only happens on platforms with a faulty implementation
of realloc(). Some C libraries do not allow realloc() to be
called with a NULL pointer to resize. The assignment
ISOLatin1 <- 0:255
in Rprofile then causes a core dump. The attached set
of 4 patches should be very safe to use and fix the problem.
--please do not edit the information below--
Version:
platform = i386-pc-sco3.2v4.2
2002 May 28
0
(PR#1604) Re: Platform-specific: simple assignments in Rprofile
...forms with a faulty implementation
> > of realloc(). Some C libraries do not allow realloc() to be
> > called with a NULL pointer to resize.
>
> What other platforms give the problem?
>
> The behaviour R assumes is required by the ISO C89 standard (at least
> according to Lewine's book). Would it not be better to fix realloc rather
> than R: there are many alternative implementations of malloc out there (and
> R uses one for Windows).
>
> One issue is that realloc is used in several R packages on CRAN, and
> quite possibly in others. These are likely t...