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 02:30
The can be used to paste text in any order
Answers: 1
question
Computers and Technology, 22.06.2019 16:00
Why should characters such as / \ " ' * ; - ? [ ] ( ) ~ ! $ { } < > # @ & | space, tab, and newline be avoided in file names?
Answers: 2
question
Computers and Technology, 22.06.2019 21:00
Describir textbook icon_person mira los dibujos y describe lo que está pasando. usa los verbos de la lista.
Answers: 1
question
Computers and Technology, 23.06.2019 03:30
Many everyday occurrences can be represented as a binary bit. for example, a door is open or closed, the stove is on or off, and the fog is asleep or awake. could relationships be represented as a binary value? give example.
Answers: 1
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
Chemistry, 12.10.2019 08:10
Questions on the website: 13722362