Há várias funções para listar o conteúdo de um objeto ou conjunto de dados.
# list objects in the working environment ls()
# list the variables in mydata names(mydata)
# list the structure of mydata str(mydata)
# list levels of factor v1 in mydata levels(mydata$v1)
# dimensions of an object dim(object)
# class of an object (numeric, matrix, data frame, etc) class(object)
# print mydata mydata
# print first 10 rows of mydata head(mydata, n=10)
# print last 5 rows of mydata tail(mydata, n=5)
Experimente o primeiro capítulo gratuito deste curso sobre limpeza de dados.