Skip to content

Search Archives

Search tips
from:Name Search by author name, e.g. from:Duncan Murdoch "exact phrase" Match an exact phrase word1 word2 Match messages containing both words Date range Use the date pickers to filter results to a time period

Use the list dropdown to narrow results to a specific mailing list. Combine from: with other terms to filter by author and content.

504 results for “from:Tony Plate”

GUI's for teaching
Tony Plate · Jun 25, 2002 · r-help

Maybe something of wider value than a GUI (for teaching and other purposes) could be an interface like that in Mathematica (and Maple?), which supports mathematical notation and plots in a command window. This allows showing students exactly what they...

2D array of strings
Tony Plate · Dec 28, 2009 · r-help

matrix(str, ncol=1) Francesco Napolitano wrote: > Sorry for the dumb question, but I couldn't figure this out myself. > > Consider the following: > >> str <- c("abc","def") >> array(str, c(2,1)) > [,1] > [1,] "abc" > [2,] "def" > > How can i...

new package: RSVGTipsDevice: create SVG plots with tooltips & hyperlinks
Tony Plate · May 3, 2007 · r-packages

the DESCRIPTION file: Package: RSVGTipsDevice Version: 0.7.0 Date: 04/30/2007 Title: An R SVG graphics device with dynamic tips and hyperlinks Author: Tony Plate <tplate at acm.org>, based on RSvgDevice by T Jake Luciani <jakeluciani at...

applying rbind to list elements
Tony Plate · Apr 25, 2007 · r-help

do.call("rbind", l) or, in the case of matrices, using the abind package: abind(l, along=1) > library(abind) > l <- list(matrix(1:6, ncol=2), matrix(11:14, ncol=2)) > abind(l, along=1) [,1] [,2] [1,] 1...

Fit non-linear regressor
Tony Plate · Jan 8, 2004 · r-help

Maybe you intended to supply a little more information in the body of your message, but without that, the best suggestion I can give with a similar degree of effort on my part is: ?nls At Thursday 08:04 PM...

Fixed: Re: [R] problems compiling R-devel packages in Windows
Tony Plate · Mar 13, 2002 · r-help

It seems the problem was that I ran ./configure (I actually ran it twice -- onece before I had installed the MinGW and R-tools stuff and again after I had installed them). After deleting and retrieving all the R-devel...

Error in namespaceExport(ns, exports) :
Tony Plate · Dec 3, 2009 · r-help

Try looking in the NAMESPACE file (in the same directory as the DESCRIPTION file). -- Tony Plate David Scherrer wrote: > Dear all, > > I get the error > > "Error in namespaceExport(ns, exports) : > undefined exports function1 , function2" > > when compiling or even when I...

timezone conversion difficulties with the new US daylight saving time switch over
Tony Plate · Oct 30, 2007 · r-help

Mike Waters wrote: > Tony Plate wrote: >> [...] > You don't say if this an R-specific problem, or if it afflicts your > computer system clock as well. Thanks, I should have noted that my computer system clock is fine, and as...

an obvious question
Tony Plate · Apr 14, 2008 · r-sig-finance

If you're not so concerned with the "that are in R" part of your question, the poster child for such success is Jim Simon's Medallion fund at Rennaissance: http://www.bloomberg.com/apps/news?pid=20601213&sid=aq33M3X795vQ...

Overloading methods in R
Tony Plate · Apr 21, 2005 · r-devel

Ali - wrote: > Henrik, > > [snip] > > Finally, I remind the package author about the original question: > > - How to overload methods in classes created by R.oo package? > [snip] Maybe you missed it in the flurry of messages, but did the idea suggested...

Regular expressions & sub
Tony Plate · Aug 18, 2005 · r-help

> x <- scan("clipboard", what="") Read 7 items > x [1] "1.11" "10.11" "11.11" "113.31" "114.2" "114.3" "114.8" > gsub("[0-9]*\\.", "", x) [1] "11" "11" "11" "31" "2" "3" "8" > Bernd Weiss wrote: > Dear all...

new package: RSVGTipsDevice: create SVG plots with tooltips & hyperlinks
Tony Plate · May 3, 2007 · r-help

the DESCRIPTION file: Package: RSVGTipsDevice Version: 0.7.0 Date: 04/30/2007 Title: An R SVG graphics device with dynamic tips and hyperlinks Author: Tony Plate <tplate at acm.org>, based on RSvgDevice by T Jake Luciani <jakeluciani at...

accessing hidden functions in testing code
Tony Plate · Apr 11, 2007 · r-devel

I'd like to be able to access unexported functions in the testing code for a package with a namespace. I know that one way to do this is to use the ":::" operator, but I'd prefer to avoid cluttering...

update to posting guide: use 'sessionInfo()' instead of 'version'
Tony Plate · Dec 29, 2005 · r-help

Some changes have been made to the posting guide, based on suggestions from various R-help contributors over the past year. The most significant change is the recommendation to use 'sessionInfo()' rather than 'version' when asking questions about unexpected behavior...

Factor Madness
Tony Plate · Dec 18, 2007 · r-help

From ?cbind: Data frame methods The cbind data frame method is just a wrapper for data.frame(..., check.names = FALSE). This means that it will split matrix columns in data frame arguments, and convert character columns to factors unless stringsAsFactors...

Interactive plots?
Tony Plate · May 25, 2007 · r-help

The package RSVGTipsDevice allows you to do just it just -- you create a plot in an SVG file that can be viewed in a browser like FireFox, and the points (or shapes) in that plot can have pop-up tooltips...

matrix graph
Tony Plate · Dec 11, 2007 · r-help

Try these: > x <- matrix(rnorm(100), ncol=10) > persp(x) > contour(x) Also, look at the R graph gallery: http://addictedtor.free.fr/graphiques/ -- Tony Plate threshold wrote: > Hi All, simple question: > do you know how to graph the following...

datetime data and plotting
Tony Plate · Oct 17, 2003 · r-help

At Friday 02:20 PM 10/17/2003 -0400, Gabor Grothendieck wrote: >[material deleted] >Time zones are not part of the problem yet POSIXt forces this >extraneous complication on you. chron has no time zones in the >first place and...

Handling of arrays
Tony Plate · Apr 24, 2007 · r-help

Try the following and look at what they return: str(ca) dimnames(ca) -- Tony Plate laptopcss at gmx.de wrote: > Dear R-Experts, > > I just imported a workspace from Matlab. I know that I can get the names of the...

a quick question about "format()"
Tony Plate · Sep 18, 2007 · r-help

runner wrote: > In the documentation of 'pairs'(package:graphics), within the last example, > it reads: > > format(c(r, 0.123456789), digits=3)[1] > > Why not simple use: format(r, digits=3)? What is the difference? Here are some examples of...

Can't find what you're looking for? Try searching with Google .