search for: salwin

Displaying 10 results from an estimated 10 matches for "salwin".

Did you mean: alwin
2000 May 12
2
Documentation of par(gamma) (PR#540)
The on-line documentation for par() refers to a 'gamma' argument. However, if 'par()' is invoked, there is no gamma argument. -- Art Salwin salwin@mitretek.org (202) 863-2985 (202) 863-2988 (fax) --please do not edit the information below-- Version: platform = Windows arch = x86 os = Win32 system = x86, Win32 status = major = 1 minor = 0.0 year = 2000 month = February day = 29 language = R Windows 9x 4.0 (build 1212) B...
2000 May 12
2
Documentation of par(ann) (PR#539)
The on-line documentation for the 'ann' argument under par(), states "If set to 'FALSE'...". However, this parameter shows up as a numeric on my machine, not as a logical. -- Art Salwin salwin@mitretek.org (202) 863-2985 (202) 863-2988 (fax) --please do not edit the information below-- Version: platform = Windows arch = x86 os = Win32 system = x86, Win32 status = major = 1 minor = 0.0 year = 2000 month = February day = 29 language = R Windows 9x 4.0 (build 1212) B...
2000 May 12
1
Typo in documentation for order() (PR#541)
The documentation for 'order()' has the following sentence: `sort.list' is the same, using only one argument put allowing partial sorting. Should "put" be "but" or possibly "'partial'"? -- Art Salwin salwin@mitretek.org (202) 863-2985 (202) 863-2988 (fax) --please do not edit the information below-- Version: platform = Windows arch = x86 os = Win32 system = x86, Win32 status = major = 1 minor = 0.0 year = 2000 month = February day = 29 language = R Windows 9x 4.0 (build 1212) B...
2000 May 15
1
Non linear regression using Levenberg-Marquardt method
Hello, I want to fit some non linear models with the Levenberg-Marquardt algorithm. It doesn''t seem to exist any function to do this in R ( well, maybe one does, but I''m a new user, and the only documentation I have is "An introduction to R"). I''d like to know if this function exists, maybe throught an additionnal package. I''d also like to know if if
2000 Mar 30
1
How do you go beyond tapply()?
...ants are indexed by both state and sex? Is there a way to use tapply() to put the vector into bins defined by the levels instead of having to exactly match the levels? It seems some sort of historgramming is what's needed, but hist() does plots, not just the categorization into bins. -- Art Salwin salwin at mitretek.org (202) 863-2985 (202) 863-2988 (fax) -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html Send "info", "help", or "[un]subscribe" (in the "...
2000 Oct 17
2
Percentile function
...ponding to the value? Something like pvalue<-function(x,vector){mean(x>=vector)} but with interpolation. Given the above function, is there a way to do the following without the loop: for(i in 1:10) y[i] <- pvalue(x[i],vector) where x and y are numeric vectors of length 10? -- Art Salwin salwin at mitretek.org (202) 863-2985 (202) 863-2988 (fax) -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html Send "info", "help", or "[un]subscribe" (in the "...
2000 Apr 24
1
Comments on Win95 R Distribution (PR#527)
...for doing the examples in the Intro. The rwinst.exe did not work at all on Win95. It could find no files. Wasn't clear from the instructions which directory I should be in while running rwinst. I tried several; none worked. So I manually unzipped the files and they worked fine. -- Art Salwin salwin@mitretek.org (202) 863-2985 (202) 863-2988 (fax) -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-devel mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html Send "info", "help", or "[un]subscribe" (in the "b...
2000 Jul 12
2
Removing Objects from workspace
Hi all, how can I remove objects from the workspace which starts with a certain pattern, e.g. lm (lm1, lm2, lm3 etc). Wildcards won?t work. Thanks, Sven -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html Send "info", "help", or "[un]subscribe" (in the
2000 Oct 02
0
Use of example()
> Date: Mon, 02 Oct 2000 08:53:32 -0400 > From: Art Salwin <salwin at mitretek.org> > X-Accept-Language: en > To: R Help List <r-help at stat.math.ethz.ch> > Subject: [R] Use of example() > X-MIMETrack: Itemize by SMTP Server on Mail1/Mitretek Systems(Release 5.0.4 |June 8, 2000) at 10/02/2000 08:51:32 AM, Serialize by Router on Ma...
2000 Mar 31
1
Cutting vectors
I have one factor with say five levels (fact) of different size and a corresponding variable (var). I randomly generate five new levels (nfact ex. 2,2,1,5,4). What I would like to do is to extract the corresponding variable values into a new variable (nvar). I did try the following, why doesn't it work? nvar<-var[fact==nfact[ ]] Patrik Waldmann