Suppose there is a Table stored in the variable myTable and the user wants to access the column named Data:
myTable$Data
typeof( variableName )
Suppose there is a Table stored in the variable myTable and the column Names refer to a column of Factors
myTable$Names <- as.character( myTable$Names )
Suppose the file to be read is located at C:/Users/Default/Documents/information.csv
newTable <- read.csv( "C:/Users/Default/Documents/information.csv", stringsAsFactors = FALSE )