bch441-work-abc-units/RPR-Introduction.R

51 lines
1.4 KiB
R
Raw Normal View History

# tocID <- "RPR-Introduction.R"
#
2017-09-12 20:09:20 +00:00
#
# Purpose: A Bioinformatics Course:
# R code accompanying the RPR-Introduction unit
#
2020-09-19 12:31:06 +00:00
# Version: 1.0
2017-09-12 20:09:20 +00:00
#
2020-09-19 12:31:06 +00:00
# Date: 2020-09-18
2017-09-12 20:09:20 +00:00
# Author: Boris Steipe (boris.steipe@utoronto.ca)
#
2020-09-19 12:31:06 +00:00
# V 1.0 Updtaed workflow; live
2017-09-12 20:09:20 +00:00
# V 0.1 First code
#
# TODO:
#
#
# == HOW TO WORK WITH LEARNING UNIT FILES ======================================
#
# DO NOT SIMPLY source() THESE FILES!
# If there are portions you don't understand, use R's help system, Google for an
# answer, or ask your instructor. Don't continue if you don't understand what's
# going on. That's not how it works ...
#
# ==============================================================================
# === TASK: Local script
#
# - Open the file myScript.R
2020-09-19 12:31:06 +00:00
#
2017-09-12 20:09:20 +00:00
# - Create a section header with a date.
2020-09-19 12:31:06 +00:00
# - Enter an R-expression that will produce the first 11 powers of 2 (starting
2017-09-12 20:09:20 +00:00
# from 0). Not a loop - a single expression. The first number you get must
# be 1. The last number you get must be 1024.
2020-09-19 12:31:06 +00:00
#
# - Save the file in the myScripts folder, and close it.
#
# - Open the file again, select the expression and type Cmd+Enter (or Cmd+R)
# to execute it.
#
# - Done
2017-09-12 20:09:20 +00:00
2020-09-19 12:31:06 +00:00
# (This task is meant to make sure that writing R expressions, saving
# them in scripts, opening script files and executing code in the file works
# for you. If there is an issue, get in touch.)
2017-09-12 20:09:20 +00:00
# [END]