# Some simpler exercises.  Start here for your warmup

# Calculate and print the following
#   sum of the numbers 1 to 1000
#   sum of the first 100 perfect squares
#   10 factorial


# Create a data frame that has columns for name, age, height, and
#  put in 5 rows of information (just make them up)


# Added the following exercises.


# Download csv file from https://raw.githubusercontent.com/fivethirtyeight/data/master/us-weather-history/KIND.csv
#   and load it 
data <- read.csv()

# calculate/print the total average precipitation for the year

# calculate/print the average year for the record max

# calculate/print the average year for the record min

# calculate/print the average record_precipitation

# plot the average_precipitation

# plot the record_precipitation