subject

Thus, we can think of our data as 1000 observations of a 10000 variables (one variable per pixel). Run the followingcode to get a matrix of face observations. face_mat <-sapply(1:1000,function(i)as. numeric(faces_array[, , i]))%>%tWhen we want to visualization an image, we need to take the 10000 dimensional vector and reconstruct it as a matrix. The codeplot_facetakes a single 10000 dimensional vector (e. g. a column offace_mat), converts it back to amatrix, and plots the resulting image. You can test this functionality by printing a random face from the dataset:plot_face(face_mat[sample(1 000, 1), ]).plot_face <-function(image_vector) {plot(as. cimg(t(matrix(image_vector, ncol=100))),axes=FALSE, asp=1)}a) Find the "average" face in this dataset by averaging all of the columns inface_mat. Plot the average face bycallingplot_faceon the average. b) Run PCA onface_matsettingcenter=TRUEandscal e=FALSE. In class we mentioned that in general it is bestifscale=TRUEbecause it puts all variables on the same scale and we don’t have to worry about the units of thevariables (remember, the scale of the variables affects our results). In general, this is good practice, especiallywhen the predictor variables are of mixed types. Here, each variable represents a single pixel intensity (in black& white) and so all variables already have the same units and same scale (minimum of 0 and maximum of 255).In this case, settingscale=FALSEactually gives better results. Plot the PVE and cumulative PVE from thePCA. How many PCs do you need to explain at least 50% of the total variation in the face images?c) Plot the first 16 principle component directions as faces using theplot_facefunction (these are the columnsof therotationmatrix).Early researchers termed these "eigenfaces" since they are eigenvectors of thematrix of faces. The code below will adjust the margins of you plot and specifies a layout for the 16 images. par(mfrow=c(4,4))specifies a grid of 4 x 4 images. Each time you callplot_faceit will plot the next face inone of the new grid cells. All you need to do is callplot_face16 times (please use aforloop). Note that theseimages describe "directions" of maximum variability in the face images. You should interpret light and darkregions in the eigenfaces as regions of highcontrast, e. g. your interpretation should not change if you invertedblack and white in the images. par(mar=c(1,1,1,1))par(mfrow=c(4,4) )d) In this part, we will examine faces that have the highest and lowest values for specific PCs. Plot the faceswith the 5 largest values on PC1 and the 5 smallest values for PC1. Based on the example faces, and the firsteigenface from the previous part and the 10 example images, what aspect of variability in the face images is captured by the first component?

ansver
Answers: 1

Another question on Computers and Technology

question
Computers and Technology, 22.06.2019 11:00
Lisa’s company, abc ltd., lost its biggest client and is now facing a financial crunch. most of her colleagues have resigned, but lisa decides to stay with the company and assist the management in overcoming the financial situation. which quality is lisa demonstrating? a. self-management b. cooperativeness c. responsibility d. loyalty
Answers: 2
question
Computers and Technology, 24.06.2019 07:30
Consider the folloeing website url: what does the "http: //" represent? a. protocal identifier. b. ftp. c. domain name d. resource name
Answers: 2
question
Computers and Technology, 24.06.2019 12:50
When is it most apprpriate for a development team to change the definition of done
Answers: 1
question
Computers and Technology, 24.06.2019 13:00
Think of a spreadsheet as a giant calculator spread of paper chart data collector
Answers: 2
You know the right answer?
Thus, we can think of our data as 1000 observations of a 10000 variables (one variable per pixel). R...
Questions
question
Mathematics, 24.02.2021 23:40
question
Physics, 24.02.2021 23:40
question
Mathematics, 24.02.2021 23:40
question
Mathematics, 24.02.2021 23:40
question
Social Studies, 24.02.2021 23:40
Questions on the website: 13722362