0
votes

I'm trying to figure out how to produce italicized labels using the ordipointlabel() function from the vegan package in R. My points represent species so I'd like the scientific names to be in italics. Any assistance would be appreciated.

Example code:

ordipointlabel(sp.mds, display="species", col = "black", pch=25, cex=1)

What am I missing here?

1
I've answered my own question. It's stupidly simple. Add "font=3" to plot code. ordipointlabel(sp.mds, display="species", col = "black", pch=25, cex=1, font=3)Flammulation
Consider adding this as a proper Answer so it can be voted on and accepted by yourself.Gavin Simpson

1 Answers

0
votes

Add "font=3" to plot code.

ordipointlabel(sp.mds, display="species", col = "black", pch=25, cex=1, font=3)