############ ASSIGNMENT # df1 #############
#*Q* Write code here to check whether the data was loaded fromthe csv file, use the summary() and head()
# functions of R:
############ ASSIGNMENT # df2 #############
#*Q* Write code here to check the type of the data in housing.Use the class() function.
#*****your code here******#
# The code below loads ‘how_we_met.csv’ data (find it in theFiles tab in bottom right panel of Rstudio)
# file into a dataframe called meeting
meeting <- read.csv(“how_we_met.csv”)
############ ASSIGNMENT # 1 #############
#*Q* Write code here to:
# a) print summary of HowMet
# b) print the top few lines of HowMet
# c) print the class of the dataset
OR
OR