Name:
Andrew ID:
Collaborated with:

This lab is to be done in class (completed outside of class if need be). You can collaborate with your classmates, but you must identify their names above, and you must submit your own lab as an knitted HTML file on Canvas, by Thursday 10pm, this week.

This week’s agenda: reading in data, cleaning data, reordering data, merging data, restructuring data

Reading in and cleaning

input.value = "4,8"
wind.measurements = as.factor(c("-2,0", "0,0", "0,6", "+1,7"))
wind.measurements
## [1] -2,0 0,0  0,6  +1,7
## Levels: -2,0 +1,7 0,0 0,6

Reordering data

Merging data