bch441-work-abc-units/myScripts/.myProfile.R

22 lines
933 B
R
Raw Normal View History

2020-09-16 06:32:51 +00:00
# .myProfile.R
# This contains information which the course framework needs from time to time
# to personalize assignments, validate submissions etc. Make sure that
# the information correctly matches our official records.
# myEmail char A string with your eMail address. Use your official
# UofT eMail address.
# myStudentNumber numeric Your UofT student number. Take care to have this
# correct.
#
# NOTE:
2020-09-21 04:54:30 +00:00
# After you have updated this script, move the file to your "myScripts" folder.
2020-09-16 06:32:51 +00:00
# Utility scripts will look for it on the path: "./myScripts/.myProfile.R"
#
# ==============================================================================
# options(stringsAsFactors = FALSE)
2020-09-16 06:32:51 +00:00
2021-10-27 06:28:10 +00:00
myEMail <- "yh.deng@mail.utoronto.ca" # e.g. "u.franklin@utoronto.ca"
myStudentNumber <- 1005845285 # e.g. 1003141592
MYSPE <- "Cutaneotrichosporon oleaginosum"
2020-09-16 06:32:51 +00:00
# [END]