Re: [R] Mixing plotting symbols with text

2022-06-07 Thread Jim Lemon
Hi Erin, Here's a kinda clunky way to get your plot title. It can be modified to do fancier things like intersperse symbols with letters but you may need no more than this. Have fun. par(mar=c(5,4,5,2)) plot(0,xlim=c(-1,1),ylim=c(-1,1),type="n",xlab="Nonsense",ylab="Intensity") points(runif(4,-1,1

[R] Mixing plotting symbols with text

2022-06-07 Thread Erin Hodgess
Hello! Hope you’re having a great day! I would like to combine plotting symbols with text. I have tried xp2a <- expression(paste(pch =3, “my stuff”)) But when I use that as a plot title, it just shows as “3 my stuff”. I have a feeling that it’s going to be something very straightforward that I