Assignment due Feb. 3
ucd = read.table("http://www.stat.psu.edu/~dhunter/220/files/datasets/ascii/UCDavis2.na.txt",
header=TRUE)
After you have created the ucd object, check that it has been correctly loaded by typing names(ucd)
and verifying that the names of the columns are correct. Next, use attach(ucd) to create a new temporary
vector out of each column in the ucd dataset. Finally, use the table function to extract the summary
information required to complete the exercise. Show all of your work after you obtain this information.