Xticks in loading plots of sPLS-DA

Hello,

I have visualized the loading plots but the x-axis ticks are super small. How can I define the size for that?

Thanks

hi @Parix

We dont have all the base R parameters in our plots. I suggest you save your plotLoading() into an object. That object is a data frame with all the information to replot your barplot.

Kim-Anh

1 Like

Hi @Parix,

Also if you want to use them in any presentation/report, you can just save them in smaller dimensions with high resolution and the fonts would appear larger in the zoomed image.

pdf is always high resolution, so an example could be:

pdf(width=4, height=4)
plotLoadings(...)
dev.off()

Al

1 Like