Skip to content

Latest commit

 

History

History
129 lines (115 loc) · 5.45 KB

index.md

File metadata and controls

129 lines (115 loc) · 5.45 KB
title layout nav_exclude nav_order
Home
default
false
1

{% assign variables = site.data[site.data_folder].variables %} {% assign course_calendar = site.data[site.data_folder].course_calendar %}

{% assign offset_week = 1 %} {% if site.data_folder[0] == "f" %} {% assign offset_week = 0 %} {% endif %}

{: .text-grey-dk-200 .lh-0 .pt-4 }

Introduction to Data Science

{: .text-grey-dk-300 .fw-300 .lh-0 }

COGS 9 - UC San Diego - Prof. Kyle Shannon

{{ variables.quarter }} {: .md-badge-purple }

{{ variables.building }} {: .md-badge-purple }

{{ variables.timings }} {: .md-badge-purple }

Welcome 👋

We are all very excited that you decided to join us on this whirlwind tour of data science. All relevant info, e.g. due dates, assignment links, etc. are found on this website. We look forward to teaching and working with all of you and hope to meet you in office hours. Check out the Getting Started section so you can hit the ground running when class starts! {: .fs-3 }

{: .note .fs-2 } Week one I try to take as many students from the waitlist as I can, please email [{{ variables.cogsadvising }}](mailto:{{ variables.cogsadvising }}) with further questions.

Discussion Sections

{% for ds in variables.discussion_sections %} {% endfor %}
Day Time Location Staff Materials
{{ ds.section }} {{ ds.day }} {{ ds.time }} {{ ds.location }} TA: {{ ds.ta }}
IAs: {{ ds.ia }}
View

Course Calendar

{% assign first_date = course_calendar[0].date | date: '%s' %} {% assign first_day = course_calendar[0].date | date: '%w' %} {% assign prev_week_no = offset_week %}

{% for row in course_calendar %} {% assign week_no = row.date | date: '%s' | minus: first_date | divided_by: 60 | divided_by: 60 | divided_by: 24 | plus: first_day | minus: 1 | divided_by: 7 | plus: offset_week %} {% if week_no != prev_week_no %}
Week {{ offset_week }}
{% endif %} {% assign prev_week_no = week_no %} {% endfor %}
Week {{ week_no }}
{{ row.date | date: "%a, %b %d" }} {% if row.label == "LECT" %} {{ row.label }} {% elsif row.label == "GLCT" %} {{ row.label }} {% elsif row.label == "CNCL" %} {{ row.label }} {% elsif row.label == "ASSG" %} {{ row.label }} {% elsif row.label == "EXAM" %} {{ row.label }} {% elsif row.label == "QUIZ" %} {{ row.label }} {% elsif row.label == "EXTR" %} {{ row.label }} {% else %} {% if row.label %} {{ row.label }} {% endif %} {% endif %} {% if row.link %} {{ row.title }} {% else %} {{ row.title }} {% endif %}