search for: myway

Displaying 20 results from an estimated 170 matches for "myway".

2003 Nov 05
1
save(iris,file=
...orks both ways: > save(iris,ascii=T,file="myiris.rda") > rm(iris) > load("myiris.rda") > ls() ... iris is back ... --- Date: Wed, 5 Nov 2003 19:01:20 +0000 (GMT) From: Prof Brian Ripley <ripley at stats.ox.ac.uk> To: Gabor Grothendieck <ggrothendieck at myway.com> Cc: <R-help at stat.math.ethz.ch> Subject: Re: [R] save(iris,file="clipboard",ascii=TRUE) As should be evident , you thought wrong (and you are thinking in the blinkered Windows way, too). On Windows, file() can take a filename "clipboard" in text mode only....
2005 Jul 01
3
error while connecting from squirrelmail
...ssential to enable tls support. All the machines are running Debian Sarge. Can anyone suggest a solution for the above problem ? Thank you. Srinivas _______________________________________________ No banners. No pop-ups. No kidding. Make My Way your home on the Web - http://www.myway.com
2004 Jan 27
0
re: cannot map ntgroup to ldap group-fixed
...noticed the gid of ldap group "users" was 539, but the one it was migrated from in /etc/group was 100, so I changed the gid and everything seems to work now? but why should it care that the gid is the same as it's /etc/group counterpart? --- On Tue 01/27, John H. < mrmailer@myway.com > wrote: From: John H. [mailto: mrmailer@myway.com] To: samba@lists.samba.org Date: Tue, 27 Jan 2004 01:43:58 -0500 (EST) Subject: [Samba] re: cannot map ntgroup to ldap group <br>ok, cn=users group has an ldap entry, as you can see below...<br><br># Entry 1: cn=users,ou=G...
2004 Mar 18
12
substitute question
Consider the following example: # substitute a with b in the indicated function. Seems to work. > z <- substitute( function()a+1, list(a=quote(b)) ) > z function() b + 1 # z is an object of class call so use eval # to turn it into an object of class expression; however, # when z is evaluated, the variable a returns. > eval(z) function()a+1 Why did a suddenly reappear again
2004 Aug 28
6
model.matrix.default chokes on backquote (PR#7202)
Full_Name: Gabor Grothendieck Version: R version 1.9.1, 2004-08-03 OS: Windows XP Submission from: (NULL) (207.35.143.52) The following gives an error: > `a(b)` <- 1:4 > `c(d)` <- (1:4)^2 > lm(`a(b)` ~ `c(d)`) Error in model.matrix.default(mt, mf, contrasts) : model frame and formula mismatch in model.matrix() To fix it replace this line in model.matrix.default:
2004 Jan 26
4
net: ../../../libraries/liblber/decode.c:644: ber_scanf: Assertion `((ber)->ber_opts.lbo_valid==0x2)' failed.
...nes only available some of the time(i was told this might be fixed in 3.0.2). I would just like to know if there is any way to get around this problem without upgrading right now? _______________________________________________ No banners. No pop-ups. No kidding. Introducing My Way - http://www.myway.com
2004 Aug 18
5
labeled break statements in R?
Hi, Are there labeled break statements in R? i.e., something along the lines of TOPLOOP: for(i in 1:m) { for(j in 1:n) { ... if(condition) { break TOPLOOP } } } Thanks, Roger
2003 Oct 21
5
do.call() and aperm()
Hi everyone I've been playing with do.call() but I'm having problems understanding it. I have a list of "n" elements, each one of which is "d" dimensional [actually an n-by-n-by ... by-n array]. Neither n nor d is known in advance. I want to bind the elements together in a higher-dimensional array. Toy example follows with d=n=3. f <-
2004 Dec 24
6
Sorting problem
Hi I'm using R 2.0 in SuSE 9.2. When I plot data as a boxplot, the boxes appear on the plot in alphabetical order (of group) rather than the order in which they appear in the data. So far, the only thing I can do to fix this is to prefix the group labels with a,b,c...etc to trick R into plotting them in the right order. Can sorting be turned off? How should I address this sensibly? Thanks
2003 Oct 14
1
Web Site Suggestion Regarding R Source
...ua I think this would make it more accessible and help people help themselves by making it easier to answer many questions themselves that they currently have to go to rhelp for. _______________________________________________ No banners. No pop-ups. No kidding. Introducing My Way - http://www.myway.com
2004 Jan 27
0
problems with group mappings with ldap
the weirdness continues net groupmap modify ntgroup="Domain Admins" unixgroup="ntadmin" NT Group Domain Admins doesn't exist in mapping DB --- On Mon 01/26, John H. < mrmailer@myway.com > wrote: From: John H. [mailto: mrmailer@myway.com] To: samba@lists.samba.org Date: Mon, 26 Jan 2004 17:40:49 -0500 (EST) Subject: Re: [Samba] net: ../../../libraries/liblber/decode.c:644: ber_scanf: Assertion `((ber)->ber_opts.lbo_valid==0x2)' failed. <br>i thought i had, but...
2003 Dec 17
6
Factor names & levels
When I alter the levels of a factor, why does it alter the names too? f <- factor(c(A="one",B="two",C="one",D="one",E="three"), levels=c("one","two","three")) names(f) -- gives [1] "A" "B" "C" "D" "E" levels(f) <-
2003 Dec 25
1
problem with pipes (PR#5053)
...so, adding access to this flag from the R level, e.g. z <- system("c:\\a.bat", intern = T, invisible = T, stderr = F, stdout = T) might be sufficient for this to be used in place of pipes in many applications. ---- [Rd] problem with pipes (PR#5053) ggrothendieck at myway.com ggrothendieck at myway.com Wed Nov 12 23:43:35 MET 2003 Full_Name: Gabor Grothendieck Version: 1.8.0 OS: Windows 2000 Pro Submission from: (NULL) (67.68.47.99) In R 1.8.0 on Windows 2000 suppose that \a.bat contains the following two lines: net /? dir \winnt which constitutes a simple...
2004 Jan 07
3
user management tool
There was talk a few weeks ago about the possibility of a Tk-based user management tool that never happened. I'm planning on trying to do this myself. What features were to be in the one that never materialized? What features might people want in it? To begin, the program will only be able to do things that can be done straight through the existing command line tools (net, smbpasswd,
2004 Feb 17
5
pass by reference -- how to do it
Hello, Pass by reference appears to be a topic which comes up from time to time, but I wasn't able to find something in the R-help archives which tells how to accomplish it. I have a problem that you may have seen before -- R runs out of memory when processing large matrices. Part of the problem for me is that I am using some large matrices as function arguments, and these are modified,
2004 Nov 18
5
Building Packages on Windows using .Rbuildignore (PR#7379)
On Thu, 18 Nov 2004 00:38:47 +0000 (UTC), Gabor Grothendieck <ggrothendieck@myway.com> wrote : >DIFFERENCE BETWEEN USING .RBUILDIGNORE AND NOT > >The reason that the processing is different according to whether one >uses .Rbuildignore or not is that > R CMD build >takes the .Rbuildignore file into account but > R CMD install > R CMD check >...
2003 Dec 19
5
for loop over dataframe without indices
One can perform a for loop without indices over the columns of a dataframe like this: for( v in df ) ... some statements involving v ... Is there some way to do this for rows other than using indices: for( i in 1:nrow(df) ) ... some statements involving df[i,] ... If the dataframe had only numeric entries I could transpose it and then do it over columns but what about the general case?
2003 Dec 02
8
Vector Assignments
Hi, I have simple R question. I have a vector x that contains real numbers. I would like to create another vector col that is the same length of x such that: if x[i] < 250 then col[i] = "red" else if x[i] < 500 then col[i] = "blue" else if x[i] < 750 then col[i] = "green" else col[i] = "black" for all i I am convinced that there is probably a
2003 Nov 05
1
save(iris,file="clipboard",ascii=TRUE)
...gt; load("clipboard") Error in open.connection(con, "rb") : unable to open connection In addition: Warning message: cannot open compressed file `clipboard' _______________________________________________ No banners. No pop-ups. No kidding. Introducing My Way - http://www.myway.com
2005 Jul 06
1
dovecot not able to access sentmail folder in home directory(chdir)
...t: (/home/user) permission denied error no 89 returned by child process the squirrel mail error was connection dropped by imap server Query capability thanks vineet _______________________________________________ No banners. No pop-ups. No kidding. Make My Way your home on the Web - http://www.myway.com