Для себя Сделать проект на английском языке в программе r studio Generate the data like this: > x<-runif(30,1,10) > y<-runif(30,1,10) > eps1<-rnorm(30,0,1) > eps2<-rnorm(30,0,1) > z<-y+eps1 > v<-x*y+eps2 Create several models where you will predict the value of “v“ using values of “x,y,z“. Document what you did and add some commentary. Include the following: 1) some basic exploration of the data 2) simple models v~x, v~y, v~z 3) model v~x+y+z 4) at least one other model, comment on how did you come up with the idea to try this model 5) which model, of those that you have tried looks best and why Your output should be a text document, that will clearly and concisely communicate what were you doing and why, i.e. provide relevant R commands, outputs, and commentaries and format it so, that it is easily readable.