Skip to content

tamu-stat689-statcomputing-fall2019/HW1-CourseSetup

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Assignment 1 - Getting started

Student: Last name, First name

Potentially helpful resources:

Part 1: R and git installation

  • Install R from CRAN. If you already have R installed, please check that you have a recent version (at least 3.5.0).

  • Install Rstudio. If you already have Rstudio installed, please update to the most recent version.

  • Install git. If you use Windows, use git for Windows. In your terminal, configure Git to recognize you. Please use your TAMU email if possible.

git config user.name “First Last"

git config --global user.email "email@example.com"

  • Take a screen shot of your terminal window that shows you executing the above commands (you will need to upload it later).

Part 2: Integration of Git, Github and R

  • Clone this repository to local machine using git clone address to folder (make sure you are already within the folder you want it to clone to)

  • Open Rstudio and make sure you have the version control enabled, see Rstudio version control for further help.

  • Use Rstudio to open the project associated with the CourseSetup directory. You should see the Git tab appear next to Environment and History consoles which will enable you to do staging, commits, pulls and pushes from within Rstudio. You will make all the changes locally, and only then push them to Github.

  • Take a screen shot of your Rstudio window with Git panel opened and the Files displaying CourseSetup folder content (you will need to upload it later).

Part 3: Basics of git

To practice using git, create a separate commit for the following changes:

  • Commit 1: Change the last name, first name at the top of this document to your last name/first name.

  • Commit 2: Create a new folder called Screenshots. Upload a screen shot of your git setup from Part 1. Upload a screen shot of your R project with git console open from Part 2. (all these changes should be in one commit)

  • Push your changes to Github.

Part 4: Simple program

To practice using git while programming, open the FunctionsLM.R and write the corresponding functions for finding beta in linear model. Afterwards, open SimpleProgram.R and fill in the missing parts of the code (indicated by [ToDo], do not use any external libraries or functions such as lm and do not erase any of the comments). Make sure to make consistent commits throughout and push your changes to GitHub in the end.

Releases

No releases published

Packages

No packages published

Languages