A. Object Subsetting, Import and Export
- Task 1: Sort the rows of the
iris
data frame by its first column and sort its columns alphabetically by column names. - Task 2: Subset the first 12 rows, export the result to a text file and view it in a spreadsheet program like Excel or Google Sheets.
- Task 3: Change some column titles in your spreadsheet program, save the result to a tab delimited text file and import it back into R. Note, for this task you only want to include the
read.table
command in the homework result (here R script).
Before you start it can be helpful to evaluate the structure of the iris
data set with the following commands:
class(iris)
dim(iris)
colnames(iris)
B. Scatter Plots
- Task 1: Generate a scatter plot for the first two columns of the
iris
data frame and color the dots by theSpecies
column. - Task 2: Use the
xlim/ylim
arguments to set limits on the x- and y-axes so that all data points are restricted to the bottom left quadrant of the plot.
Again before you start, evaluate the structure of iris data set. The following commands are useful:
iris[1:4,]
table(iris$Species)
C. Bar Plots
- Task 1: Calculate the mean values for the
Species
components of the first four columns in theiris
data frame. Organize the results in a matrix where the row names are the unique values from theiris Species
column and the column names are the names of the first fouriris
columns. - Task 2: Generate two bar plots for the matrix generated in the previous step: one with stacked bars and one with horizontally arranged bars.
D-H. Analysis Worflow
The instructions for these homework assignments are here.
Homework submission
Assemble the code from the homework assignments A-H in a single R script (HW3.R
) and upload it to your private GitHub repository under Homework/HW3/HW3.R
.
Due date
This homework is due on Thu, April 20th at 6:00 PM.
Homework Solutions
See here