The CSV file below indicates resident tuition vs non-resident tuition for 12 public colleges. Use that data to create a 95% confidence interval for the paired differences between residential tuition and non-residential tutition.
Institution,Resident,Nonresident
College_1,4300,8700
College_2,1900,3600
College_3,3300,8500
College_4,3300,7000
College_5,2700,5700
College_6,3400,5900
College_7,2900,3400
College_8,2300,4500
College_9,3500,7400
College_10,3200,5900
College_11,1500,8300
College_12,3100,7800
Recall that you can read that kind of data into an R dataframe using a command like so:
read.csv(text = 'paste-your-data-here')