Write a function that will take print out your name and call it myName
Write a function that will return the sum of two squares and call it SumofTwoSquares. Test it!
Write a function called ReturnNRowNCol that will take a dataframe and return both its number of rows and number of columns in a vector. Test it with the following dataframe:
admits <- data.frame(ADMIT_ID = c(paste0("000", 1:9),"0010"), ACT = round(runif(10, 17, 34)),
HIGH_SCHOOL_DESC = c("Blue Springs South", "Warrensburg High School", "Odessa R-VII SR High School", "Blue Springs South", "Lees Summit North High School", "Lees Summit West High School",
rep("Warrensburg High School", 3), "Platt County R-III High School"), stringsAsFactors = FALSE)