Dr. Gonsalge Almeida

Technical Foundations Bootcamp (Weeks 1–4)

RSH7033 — Applied Multivariate Statistics (DBA)
Trine University — TrineOnline / CGPS

This four-week technical module prepares students to build, document, and deploy a fully reproducible multivariate research project using professional Git workflows.

Weeks 1–4 → Technical Preparation
Weeks 5–8 → Final Git-Managed Research Project


WEEK 1 — Unix Environment & Git Foundations

Modern research workflows operate in Unix-like systems (Linux/macOS).


Step 1: Access a Unix Terminal


Step 2: Learn the Linux Command Line

Master these commands:


Step 3: Install Git & Setup GitHub

git config --global user.name "Your Name"
git config --global user.email "your.email@trine.edu"
ssh-keygen -t ed25519 -C "your.email@trine.edu"

Step 4: Git Practice

Complete:


WEEK 1 DELIVERABLE


WEEK 2 — HTTP & HTML Foundations

Understanding web communication is essential for API and data extraction work.

HTTP Basics

Understand:

HTML Fundamentals


WEEK 2 DELIVERABLE


WEEK 3 — Regular Expressions

Regex is essential for structured text extraction.


WEEK 3 DELIVERABLE


WEEK 4 — Reproducible Research with Binder

Professional research must be executable by others.

Milestone Project — Binder Deployment

  1. Create a public GitHub repository
  2. Add a Jupyter notebook (.ipynb)
  3. Include datasets
  4. Create a requirements.txt file
  5. Add Binder badge to README
  6. Verify notebook runs successfully

Example requirements.txt:

pandas
numpy
matplotlib
seaborn
scikit-learn

Example Binder badge:

[![Launch Binder](https://mybinder.org/badge_logo.svg)]
(https://mybinder.org/v2/gh/yourusername/yourrepo/HEAD)

WEEK 4 DELIVERABLE


WEEKS 5–8 — Final Multivariate Research Project

Students apply all technical foundations to build a full research project using:


PROFESSIONAL STANDARD BY WEEK 8

Version control competency is part of the academic assessment in RSH7033.


← Back to RSH7033 Course Hub