Displaying 20 results from an estimated 30000 matches similar to: "R-alpha: expressions in graphs"
1997 Apr 24
2
R-alpha: Postscript bug ...
Jeez I dunno - it compiles perfectly and you guys get excited just because
it doesn't work :-)
I have to admit to being baffled about what happened (I'm SURE this was
working not long ago), but here is a quick fix. The problem is in the
function "GetCharInfo" in the file src/unix/PostScript.c.
The fix is to change the statement
if(nchar < 0)
return 0;
to
if(nchar <
2001 May 07
2
Symbolic substitution of expressions into expressions
In the following
titletxt <- substitute(paste(tx, tilde(y) == sqrt(y)),
list(tx="Replace y by "))
I'd like to be able to replace e.g. sqrt(y) by a symbol or
symbolic expression that has the effect of inserting sqrt(y)
into the place that it occupies. This would allow me to put an
arbitrary expression into that position. [One can use text() or
mtext() etc. to place titletxt
1997 Apr 08
1
R-alpha: rbind
rbind() does something strange to dimnames
R : Copyright 1997, Robert Gentleman and Ross Ihaka
Version 0.50 Beta (April 1, 1997)
R is free software and comes with ABSOLUTELY NO WARRANTY.
You are welcome to redistribute it under certain conditions.
Type "license()" for details.
> test1 <- data.frame(time= c(4, 3,1,1,2,2,3),
+ status=c(1,NA,1,0,1,1,0),
+ x= c(0,
1997 May 08
1
R-alpha: Equations in Plots
Paul Murrell and I are making some progress with making mathematical
expressions available in graphs. The idea is to use R expressions to
represent the mathematical expressions. So far we have (or will soon
have):
R LaTeX
x^i x^i
x[i] x_i
alpha \alpha
Alpha \Alpha
hat(x) \hat{x} \widehat{x}
bar(x) \bar{x} \overline{x}
x+y x+y
x-y x-y
x/y x/y
(x) (x)
{x} {x}
frac(x,y)
2000 Nov 01
0
J. of Comp. and Graph. Statist., Sept. 2000
Members of R-devel may be interested in the special Sept. 2000 issue
of J. of Comp. and Graph. Statist.
http://www.amstat.org/publications/asajournals.html#jcgs
on Systems and Languages. It features two articles by Robert
Gentleman and Ross Ihaka on "Java and Dylan" and "Lexical Scope and
Statistical Computing", an article by Paul Murrell and Ross Ihaka on
"An
1997 Jun 12
1
R-alpha: ISO Latin1 and Readline
Does anyone have experience with using the readline library in
conjunction with ISO Latin1 characters?
In response to a prod from Martin Maechler I am trying to convert R so
that it will accept 8-bit characters (and render them correctly in text
and graphics). This appears to work when I type such lines into a file
and source it, but readline seems to intercept any 8-bit characters
I type
1997 Aug 22
0
R-alpha: Re: Extensions .R and .Rd (in base/funs/ and base/man/ )
This is propagated to R-devel in case anyone else has a comment on this :
>>>>> "MM" == Martin Maechler <maechler@stat.math.ethz.ch> writes:
MM> On Aug. 14,
MM> "Ross" == Ross Ihaka <ihaka@stat.auckland.ac.nz> writes:
Ross> Re the emacs stuff:
MM> ...
Ross> 2. Peter Dalgaard made the suggestion that we made R source
1998 Jan 05
0
as.numeric changes?
[another spill over from R-core
concering the new behavior of as.numeric(.) for factors. - MM]
>>>>> "Ross" == Ross Ihaka <ihaka@stat.auckland.ac.nz> writes:
Ross> Thomas Lumley writes:
> On 27 Dec 1997, Peter Dalgaard BSA wrote:
> > Thomas Lumley <thomas@biostat.washington.edu> writes:
> >
> > > Now as.numeric() operates
1997 Nov 03
1
R-alpha: expression(..) objects -- c(ex1, ex2) `fails'
When investigating the
legend(x,y, expression ( <math>, <math> ), ....)
[as suggested by Jim Lindsey],
I once again stumbled over the fact that expression objects behave somewhat
``wierdly'', IMHO.
We can have expressions of length(.) > 1, and access elements of these like
list elements.
However, other natural things don't work with expressions; some example
2009 Jul 13
1
math expressions in graphs
Dear useRs,
I want to put a math expression in the ylab in my plot which should be a Delta and a 'y' with a trace and a hat above it and a 't' as subscription.
How could I manage to do it?
Thanks in advance,
Regards,
Rafael.
____________________________________________________________________________________
[[elided Yahoo spam]]
[[alternative HTML version deleted]]
1997 Jul 22
7
R-alpha: New version of R for testing
The newest version of R for Unix (version 0.50 alpha-1) is now (or will
soon be) available from the following sites.
NORTH AMERICA:
http://lib.stat.cmu.edu/R/Alpha
EUROPE:
ftp://ftp.stat.math.ethz.ch/R/
ftp://statlab.uni-heidelberg.de/pub/mirrors/auckland/R/
JAPAN:
ftp://ftp.u-aizu.ac.jp/pub/lang/R/
NEW ZEALAND:
ftp://stat.auckland.ac.nz/pub/R/
1997 May 22
2
R-alpha: options(..) vs. .Options // Re(1i) = 2.4976e-307
The .Options
vector had been introduced a while ago after my suggestion
(see Ross's E-mail below).
.Options$digits is used be default in several print methods (eg print.lm),
however, deparse(.) e.g., uses options()$width, and not .Options$width.
Another problem is that .Options
is still not in the documentation (on-line help).
Before one could add it there, we'd need ``the
1997 Apr 01
0
R-alpha: R-testers: pmin heisenbug
I must admit to being baffled by this. When I type "R" I get
R : Copyright 1997, Robert Gentleman and Ross Ihaka
Version 0.50 Beta (April 1, 1997)
R is free software and comes with ABSOLUTELY NO WARRANTY.
You are welcome to redistribute it under certain conditions.
Type "license()" for details.
> gc()
Garbage collection ...
150427 cons cells free (75%)
1823k
2006 Aug 10
0
sn package - skew t - code for analytical expressions for first 4 moments
hello users of the SN package,
i thought i post here some useful help on R code on the 4 moments for the skew t
sampling gives seldom good results for skewness and kurtosis, so
one really needs the analytical results,
it took me some time to get it from the article
Azzalini, A. & Capitanio, A. (2003),
Distributions generated by perturbation of symmetry with emphasis on
a multivariate
2005 Dec 15
2
Why is bubbles() creating empty png graphs?
This code below produces empty XXX.png files - if I use plot(), it works
and if I enter the commands
png(filename=fn)
bubble(positions, do.sqrt=FALSE, main=q)
dev.off()
manually, it works as well.
I am lost - any help appreciated.
The weird thing is that it worked before I made some changes... (I don't
have a copy of the working version...).
R version:
platform i686-pc-linux-gnu
arch
1997 Sep 11
1
R-alpha: Mathematical Annotation in R (plots)
[[ this has first bounced to me as 'list-manager', because the
subject said ``Returned mail: User unknown''
Paul, I assume you'd approve the subject I've chosen...
-- Martin M
]]
hi
for those who are interested ...
the following is a LaTeX document which describes the current state of
mathematical expression syntax in R
paul
------CUT
1997 Jun 19
0
R-beta: Compiling on HPUX 9.05 and DEC alpha OSF1
Dear help
I have been attenpting to compile R0.49 on both of
these unix machines and have had no compilation errors
but core dumps at run time.
The HP UX box start out by putting up a graphics window and
then crashing with the following error message before giving the prompt
R : Copyright 1997, Robert Gentleman and Ross Ihaka
Version 0.49 Beta (April 23, 1997)
R is free software and
1997 Aug 21
2
R-alpha: libf2c as a shared library
Ok, I did the following experiment
dyn.load("/usr/local/lib/libf2c.so.2.0")
dyn.load("try.so")
.Fortran("try", 10.5)
where try.so contains the following compiled subroutine
subroutine try(x)
double precision x
write(*,*) x
return
end
It worked just fine (at least here on my FreeBSD machine at home).
So it seems that it will be
2004 Sep 24
2
Throwing expressions around
I'm trying to write some code that throws a few expressions around the
place, and I've boiled down the problem to be equivalent to this.
Consider the curve function which plots expressions in 'x':
> curve(x^2)
Now wrap that in the most naive wrapper function:
> fc=function(m){curve(m)}
and try it:
> fc(x^2)
Error in eval(expr, envir, enclos) : Object
2002 Apr 09
3
expressions on graphs
Hello,
I am trying to get a time derivative on a plot title. I prefer to have
it in the form \dot{s_i}, but \partial s_i/\partial t would be O.K. In
the graphics demo I cannot find either a dot or a partial equivalent.
Thanks,
John.
--
==========================================
John Janmaat
Department of Economics
Acadia University, Wolfville, NS, B0P 1X0
(902)585-1461
All opinions stated