Lab 1A
Directions: Follow along with the slides and answer the questions in red font in your journal.
R programming language.
R.data(cdc)
View(cdc)
View(cdc): 
View your data. Then answer the following:
cdc data loaded.cdc data set?dim(cdc)
nrow(cdc)
ncol(cdc)
names(cdc)
Names(cdc)
NAMES(cdc)
names(cdc)
names(CDC)
  function (y~x, data = ____ ) 
  function (y~x, data = ____ ) 
histogram(~height, data = cdc)
bargraph(~drive_text, data = cdc)
xyplot(weight~height, data = cdc)