Recently Published
Let's Go To The Movies!
Slideshow presentation of my project for STAT 325
HW #1
Under section one, create a data frame, named DF, consisting of columns "Student", "Quiz1", and "Quiz2". The data frame should have 10 rows filled with entries you decide. Report the mean score of each quiz. Hint: use the apply() function.
Under section two, create a function that prints the first n consecutive terms of the sequence determined by the recursion: f(k+2) = f( k) + f(k+1), k = 1, 2, ..., with f(1) = f(2) = 1. Demonstrate your function with an example. Hint: use a for loop.