# 1. Reading in data # (commands used *after* downloading the data files) # # Set the working directory using setwd(), or the # drop-down menus # Check the working directory using getwd() pheno <- read.table("example-pheno.csv", sep=",", header=T) pheno2 <- read.csv("example-pheno.csv") pheno3 <- read.table("example-pheno.txt", header=T) summary(pheno3)