Proteomics_Rosettes_CW {WallomicsData} | R Documentation |
Proteomics Rosettes Cell Wall
Description
A dataset containing the identification and quantification of Cell Wall Proteins (CWPs) performed using LC-MS/MS analysis on rosettes of five A. thaliana genotypes at two growth temperatures. See Ecotype and Temperature for additional information.
Usage
data("Proteomics_Rosettes_CW")
Format
A data frame with 30 rows and 364 variables.
Source
doi: 10.3390/cells9102249
Examples
# Load the dataset
data("Proteomics_Rosettes_CW")
# Look at data frame dimensions
dim(Proteomics_Rosettes_CW)
# Look at the first rows and columns
head(Proteomics_Rosettes_CW[,c(1:10)])
# Create a colors' vector
colors <- c(rep("#A6CEE3",3), rep("#1F78B4",3), rep("#B2DF8A",3), rep("#33A02C",3),
rep("#FB9A99",3), rep("#E31A1C",3), rep("#FDBF6F",3), rep("#FF7F00",3),
rep("#CAB2D6",3), rep("#6A3D9A",3))
# PCA on proteomics
res.pca <- prcomp(Proteomics_Rosettes_CW, center = TRUE, scale. = TRUE)
plot(res.pca$x[,"PC1"], res.pca$x[,"PC2"], pch = 19, xlab = "PC1", ylab = "PC2", lwd = 5,
main = "Individuals' plot (1 x 2) - PCA on Rosettes Cell Wall Proteomics",
col = colors)
text(res.pca$x[,"PC1"], res.pca$x[,"PC2"], labels = row.names(res.pca$x), cex = 0.8, pos = 3)
[Package WallomicsData version 1.0 Index]