Q1. What is the purpose of the RStudio IDE mentioned in the text?
Q2. Which function is used to set a seed for reproducibility in random number generation?
Q3. How can you change the name of variables/columns in a data frame?
Q4. If we set the seed to 11 and generate 10 random numbers from a normal distribution, will we get the same result each time we run it?
Q5. How can you change the column names of a data frame called df to 'Studyid', 'Grade', and 'Sex' in R?
Q6. How can you extract the value from the first row and first column of a data frame called df in R?
Q7. How can you combine two matrices into a list in R?
Q8. How do you create a matrix with 5 rows and 2 columns filled by rows in R?
Q9. How do you create a vector with values ranging from 0 to 100 in steps of 10 in R?
Q10. How can you set a seed to ensure reproducible results in R?
Q11. What is the output of the command exp(2)?
Q12. If x1 <- 2 and y1 <- x1^2, what is the value of y1?