質問

How can I change the thickness of the boundary lines used in ordihull?

library(vegan)
data(dune)
data(dune.env)
mod <- cca(dune ~ Management, dune.env)
attach(dune.env)
plot(mod, type="n", scaling = 3)
pl <- ordihull(mod, Management, scaling = 3, label = TRUE)

enter image description here

役に立ちましたか?

解決

You could use the lwd argument, see ?par for details.

pl <- ordihull(mod, Management, scaling = 3, label = TRUE, lwd=10)

ordihull

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top