Skip to content
Course Notes: Introduction to Importing Data in R
add text here
# Write and run code here
# Import swimming_pools.csv: pools
pools <- read.csv("swimming_pools.csv", stringsAsFactors = FALSE)
# Print the structure of pools
str(pools)