Re: [R] Italics in plot main title

2008-06-02 Thread Uwe Ligges
Example: n <- c(10,20,30) par(mfrow=c(2,2)) for(i in seq_along(n)) plot(1, main=substitute("Relative efficiency for sample size " * {italic(n) == ni}, list(ni=n[i]))) Best, Uwe Liugges Marcin Kozak wrote: Hi, I am drawing several plots and want to have italics in a main title; this is

[R] Italics in plot main title

2008-06-01 Thread Marcin Kozak
Hi, I am drawing several plots and want to have italics in a main title; this is easy with expression(). However, I want also to add a value to it, say n_i, that depends on an ith plot. For this I am using paste(). An example: n_i = 10, 20, 30; I want to draw a plot for each i with the title: "Rel