Displaying 20 results from an estimated 9000 matches similar to: "R-beta: Greeks symbols in help"
2007 Oct 18
1
R-graphics printing greeks
I have tried to print a table of greek alphabet names and symbols
without success. I can print one character at a time but can't seem to
find a way to automate an entire list of the symbols. Some of the code I
have tried is below. I have searched on help, worked the examples in the
December 2002 R Help Desk article and plotmath but have not been able
to find a way to accomplish the
2011 May 18
1
Integral Symbol
Dear All,
I am documenting a R package. That means writing the *.Rd files inside the \man folder of the package structure
I was wondering how to write the symbol for an integral function in a formula.
Similar to this one in LaTeX:
\int_{0}^{10} \Omega(t)dt
I already tried
\deqn{\int_{0}^{10} \Omega(t)dt}
but it does not work. Any idea? Which math symbols does R-help recognise?
Regards,
2004 Mar 28
1
Greek symbols not generated on quartz device (PR#6708)
Full_Name: Mark St. John
Version: 1.8.1
OS: Macintosh 10.3.3
Submission from: (NULL) (63.135.5.86)
After upgrading from Mac OS 10.2.8 to 10.3.3 a program I wrote to generate plots
will no longer display annotated Greek symbols. I'm using parse() and
expression() to convert variable text in to symbols and it would appear that
both functions work reasonably well except that Greek characters
2011 Jun 30
1
Italicized greek symbols in PDF plots
I know that this has been asked before in other variations but I just can't
seem to figure out my particular application from previous posts. My
apologies if I have missed the answer to this question somewhere in the
archives. I have indeed looked.
I am running Ubuntu 11.04, with R 2.12.1 and ESS+Emacs.
For journal formatting requirements, I need to italicize all the greek
letters in any
2011 Jun 21
2
Italicize Greek symbols in axis
Hello there,
Is there any way to italicize Greek symbols such as mu in axis? From the help
files of mathematical anotations: "Note that bold, italic and bolditalic do not
apply to symbols, and hence not to the Greek symbols such as mu which are
displayed in the symbol font. They also do not apply to numeric constants.", it
seems that it cannot be done.
Thanks,
Bingzhang Chen
2005 Oct 10
2
greek symbols using pch
Hi R-users,
In a plot, can I specify pch to be a greek symbol? (I looked at
show.pch() in the Hmisc package but couldn't see the right symbols in there).
If not, I guess I can get around this using text(x,y,expression()).
cheers!,
Matt.
Dr Matt Fischer
Postdoctoral Fellow - IPILPS
ANSTO - Institute for Nuclear Geophysiology
Building 21A
PMB 1 Menai NSW 2234
Ph: +61 2 9717 9686
Fax:
2007 Apr 16
1
Greek symbols in xtable rows
Dear R-helpers,
I am using xtable package to prepare a Latex code of some R tables.
Is this possible to have a greek symbols in xtable cells?
How can I get for example a string of : $\Delta$
> "$\Delta$"
[1] "$Delta$"
And string: > "$\\Delta$"
[1] "$\\Delta$"
Gives a latex aoutput like: \$$\backslash$Delta\$
Thank You in advance
Andris
2010 Oct 04
2
plotmath: how to use greek symbols in expression(integral(f(tau)*dtau, 0, t))?
I would like to use greek "tau" as a symbol of variable to integrate
over in plotmath
expression(integral(f(tau)*dtau, 0,t))
but nothing seems to work. I tried d{\tau}, d\tau, etc.,
without any success
Is it possible? How can I accomplish this?
Best regards,
Ryszard
--------------------------------------------------------------------------
Confidentiality Notice: This message is
2009 Dec 09
1
Greek symbols on "ylab=" using barchart() {Lattice}
Hi All,
I'm trying to write "ug/m3" as y-label, with greek letter "mu" replacing "u"
AND "3" going as a power.
These commands works in general:
plot.new()
text(0.5, 0.5, expression(symbol("m")))
But, I'm sure about how to do it using barchart() from "Lattice". Can anyone
help please?
Thanks,
Peng Cai
[[alternative HTML
2010 Sep 05
1
Greek symbols (again but more complicated)
Hi.
I'm trying to get 'mu' to show up as a Greek symbol but, despite trying every example I could find, can't get it to work. Any insights would be welcome.
This is what I'm using that works, but displays mu with the letter u.
plotTimeXMastPAR <- qplot(DT,MastPAR, data=A, xlab = "", ylab = quote(PAR (uE ~m^-2 ~s^-1)), geom="line") +
2009 Apr 24
0
Problem with greek "beta" symbol in plot using CairoPDF (Windows)
Dear R-Helpers,
I have a problem with displaying the greek "beta" symbol in PDF files
using Cairo library - it displays as an empty box. The same also happens
for a dash symbol in subscript. Both symbols are displayed correctly if
the plot is produced on screen (outside of CairoPDF).
The syntax that I use for it in plot command is:
2017 Jul 30
2
greek letters do not work in expression
> On Jul 30, 2017, at 8:25 AM, Uwe Ligges <ligges at statistik.tu-dortmund.de> wrote:
>
>
>
> On 30.07.2017 17:22, Milan Cisty wrote:
>> Dear all,
>> I appreciate suggestions for following problem. I wrote to RStudio:
>> plot(c(1,20),c(1,20), xlab = expression(paste(alfa)))
>> or the same happen when I wrote:
>> plot(c(1,20),c(1,20), xlab =
2007 Jul 23
2
persp and greek symbols in the axes labels
Hello,
I am plotting a 3D function using persp and I would like to use greek
symbols in the axes labels.
I have found examples like this one on the web:
plot(0,0,xlab=expression(kappa[lambda]),ylab=substitute(paste(phi,"=",true,sigma),list(true=5)))
this works well with plot but not with persp:
with the command
persp(M,theta = -20,phi =
2008 Feb 22
1
How to Include greek symbol in axis label?
Hi, I'm fairly new to R, so hopefully this is an easy question...
On a plot, I would like to have the y label read: "Response(phi)" with phi = the greek character. From old posts I've found this:
title(ylab=expression(paste("Response (", phi, ")")))
This displays nicely, but in the default font. I would like to use font=6 (which is the font of the other
2006 Mar 02
0
Combining plaintext and plotmath expressions
I searched the archives and did not find a solution, so I pose this question to those well-versed in the use of plotmath and expressions.
I have a list of strings in an external CSV file which I wish to use sometimes as plot axis labels and sometimes as plot titles. These strings combine plaintext and a few mathematical expressions (Greek letters, subscripts). Moreover, I sometimes need to
1998 Feb 12
1
R-beta: Quantile function
Is the following behaviour of the quantile function what one would expect?
> a <- 1:100
> quantile(a,.6)
60%
60.4
Philippe
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
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
2009 Jan 28
0
Sweave problem with greek text
Dear Sweave and R aficionados,
I am using R and Latex for many years, writing texts in greek. I tried
to combine them with Sweave, but without any success.
Could you provide me with any help?
Usually my LaTeX files are like this iso-8859-7 encoded .tex file:
http://costis.name/0various/lists/R/sweave/successful.greek.tex ,
which happily produces
2008 Nov 14
1
Line breaks in mathematical formulae in Rd files (PR#13287)
Hi,
This is a problem about writing R documentation (R-exts 2.6). The
command "\deqn" defined in "Rd.sty" is:
\newcommand{\deqn}[2]{\[#1\]}
which will put mathematical formulae in the "displaymath" environment;
that means line breaks are not allowed (or will not be shown) in
formulae, but sometimes we do need multiple lines of formulae. One
solution is to write
2012 Feb 25
1
RFT: Use Greek semicolons for comdlg32's printer status enumeration?
Request For Translators<g>
So what I've gathered from Wikipedia is that the Greek language does not
use semicolons as a separator for enumerations:
http://en.wikipedia.org/wiki/Semicolon#Greek_and_Church_Slavonic
| In Greek and Church Slavonic, a semicolon indicates a question,
| similar to a Latin question mark.[2] To indicate a long pause or
| separate sections, each with commas
1999 Feb 19
1
Potential problem with tapply
Is the following behaviour of tapply not disappointing?
Problem with tapply occurs when dealing with na.rm when an
argument additional to na.rm is sent to the applied function (here
quantile).
Any comment?
Thank you,
Philippe Lambert
> x <- c(12,10,12,2,4,11,3,7,2,1,18,7,NA,NA,7,5)
> fac <- gl(4,4,16)
> # Works fine
> tapply(x,fac,quantile,na.rm=T)
$"1"
0% 25%