I'm making a graph of a PCA in R using morphological data of distinct fishes and I'm using the package "factoextra" to make this plot. I runned the following code:
fviz_pca_ind(pca, axes = c(1:2), geom.ind = "point", pointshape = 21,
pointsize = 2,
fill.ind = data$spp,
col.ind = "black",
palette = "jco",
addEllipses = TRUE,
label = "var",
col.var = "black",
repel = TRUE,
legend.title = "Species") +
ggtitle("") +
theme(plot.title = element_text(hjust = 0.5))
Which had returned me the following graph:
My goal is to ill the clusters and the index of the graph with images of the respective fish specie instead of these colored points (These images are png's that I already have in my PC). How can I make it?