R function calls
>Factor54$scores
>plot(Factor54$scores[,1:2], pch = AminoAcids, main="Factor Scores", xlab="pah", ylab="pss")
>Factor3d =scatterplot3d(Factor54$scores[,1:3], pch = AminoAcids, main="Factor Scores", box = FALSE, grid=F, xlab="pah", ylab="pss", zlab="ms")
>Factor3d$plane3d(c(0,0,0), col="grey")
>Factor3d$points3d(c(0,0), c(0,0), c(-3,2), lty="solid", type="l" )
>Factor3d$points3d(c(0,0), c(-1.5,2), c(0,0), lty="solid", type="l" )
>Factor3d$points3d(c(-1.5,2), c(0,0), c(0,0), lty="solid", type="l" )
>Factor3d$points3d(Factor54$scores[hydrophobic,1:3], col="blue", cex = 2.7, lwd=1.5)
>Factor3d$points3d(Factor54$scores[polar,1:3], col="green", cex = 3.3, lwd=1.5)
>Factor3d$points3d(Factor54$scores[small,1:3], col="orange", cex = 3.9, lwd=1.5)
>legend(x=5, y=4.5, legend=c("hydrophobic", "polar", "small"), col=c("blue", "green", "orange"), pch=21, box.lty =0)
The relationship among amino acids according the their PAH, PSS, MS, CC, and EC values can be inferred from their scores. As expected, similar amino acids like Isoleucine (I) and Leucine (L) have comparable scores, while dissimmilar amino acids such as Glycine (G) and Arginine (R) have contrasting scores.