If you collaborated with anyone, you must include “Collaborated with: FIRSTNAME LASTNAME” at the top of your lab!

Part 1. t-test (10 points)

Write a function my_t.test() that performs a one sample t-test in R. To prove it works, use or simulate any data. Use this data for a two-sided t-test using both my_t.test() and t.test(). The results should match. Do the same for a one-sided t-test.

Your function should have the following parameters:

Your function should return a list with elements:

You should use the following information:

(Hint: Be careful about whether you use lower.tail = TRUE or lower.tail = FALSE in the two-sided test! One safe option is to use lower.tail = FALSE with the absolute value (abs()) of your test statistic.)

Part 2. Linear model (10 points)

Write a function my_lm() that fits a linear model in R. To prove it works, use or simulate any data. Use this data to fit a linear model using both my_lm() and lm(). The results of my_lm() should match the coefficient table from the summary of your lm() output.

Your function should have the following parameters:

Your function should return a table similar to the coefficent table from summary() with rows for each coefficient (including the (Intercept)!) and columns for the Estimate, Std. Error, t value, and Pr(>|t|). There should be row and column names.

You should use the following information:

(Hint: As before, be careful about whether you use lower.tail = TRUE or lower.tail = FALSE! One safe option is to use lower.tail = FALSE with the absolute value (abs()) of your test statistic. Make sure you never end up with a p-value greater than 1!)