str(x)  # Compactly display the internal structure of an R object.
class(x)  # Return the object class.
dim(x)  # Retrieve or set the dimension of an object.
nrow(x)  # Return the number of rows (observations).
ncol(x)  # Return the number of columns (variables).
object.size(x)  # Provides an estimate memory used to store an R object.
names(x)  # Get or set the names of an object.
head(x)  # Returns the first part of a vector, matrix, table, data frame or function.
tail(x)  # Returns the last part of a vector, matrix, table, data frame or function.
summary(x)  # Produces result summaries of the results of various model fitting functions.
table(x$y)  # Uses the cross-classifying factors to build a contingency table of the counts at each combination of factor levels.
is.na(x)  # indicates which elements are missing.
na_count <- is.na(x)  
sum(na_count)  # Assign missing elements to variable and sum missing elemeents.