2021-11-16 05:31:48 +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:
|
|
|
|
# After you have updated this script, move the file to your "myScripts" folder.
|
|
|
|
# Utility scripts will look for it on the path: "./myScripts/.myProfile.R"
|
|
|
|
#
|
|
|
|
# ==============================================================================
|
|
|
|
# options(stringsAsFactors = FALSE)
|
|
|
|
|
|
|
|
myEMail <- "yh.deng@mail.utoronto.ca" # e.g. "u.franklin@utoronto.ca"
|
|
|
|
myStudentNumber <- 1005845285 # e.g. 1003141592
|
|
|
|
MYSPE <- "Cutaneotrichosporon oleaginosum"
|
|
|
|
|
|
|
|
# [END]
|