Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,9 @@ collections:
projects:
output: true
permalink: /:collection/:path/
discussions:
output: true
permalink: /:collection/:path/

# The sitemap **must** be enabled. It's published as /baseurl/sitemap.xml
plugins:
Expand All @@ -150,6 +153,13 @@ defaults:
values:
layout: lab
nav_exclude: true
- scope:
path: ''
type: discussions
values:
layout: discussion
nav_exclude: true
subpath: 'assets/discussions/'
- scope:
path: ''
type: hw
Expand Down Expand Up @@ -254,7 +264,8 @@ compress_html:
# The default false removes files in that directory, which is useful for when you unpublish pages.
# keep_files: false

# Likely not necessary, but a google default for Berkeley
# Set the timezone to ensure days appear correctly on the auto-generated schedule
# This fixed one-off problems with extra days (extra_days_col2) defined in _data/syllabus.yml
timezone: UTC
future: true

Expand Down
19 changes: 14 additions & 5 deletions _data/discussions.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,21 @@
### DISCUSSION ORDERING ###
# title (or skip) is required for each entry
# link is optional
# you may skip a discussion from showing on the schedule by
# setting the entry to "skip: true"
# each entry requires either a 'slug' or a 'title' field

# use the slug if you utilize the _discussions collection. this will take info
# from the front matter of the corresponding file in _discussions/
# if your filename has a leading zero, quotes are required around the slug.
# if you use the _discussions collection, the title field will be useful for
# one-off overrides like holidays or for placeholders; use the title field sparingly

# nonumber supresses the label and numbering for the discussion entry
# skip: true will omit the discussion from the schedule entirely

# link overrides the default link to the discussion page from the collection if
# you provided a slug or provides an external link
discussions:
- title: Discussion 0
link: https://datahub.berkeley.edu/hub/login?next=%2Fhub%2F
- title: Discussion 1
- slug: disc01
- title: Discussion 2
- skip: true
- title: Discussion 3
Expand Down
23 changes: 23 additions & 0 deletions _data/homework.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
### HOMEWORK ORDERING ###
# each entry requires either a 'slug' or a 'title' field

# use the slug if you utilize the _hw collection. this will take info
# from the front matter of the corresponding file in _hw/
# if your filename has a leading zero, quotes are required around the slug.
# if you use the _hw collection, the title field will be useful for
# one-off overrides like holidays or for placeholders; use the title field sparingly

# nonumber supresses the label and numbering for the homework entry
# skip: true will omit the homework from the schedule entirely

# link overrides the default link to the homework page from the collection if
# you provided a slug or provides an external link
homework:
- slug: hw01
- title: Homework 2
link: https://datahub.berkeley.edu/hub/login?next=%2Fhub%2F
- title: Homework 3
- skip: true
- title: Homework 4
- title: Homework 5
- title: Homework 6
13 changes: 0 additions & 13 deletions _data/homeworks.yml

This file was deleted.

21 changes: 15 additions & 6 deletions _data/labs.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,21 @@
### LAB ORDERING ###
# title (or skip) is required for each entry
# link is optional
# you may skip a lab from showing on the schedule by
# setting the entry to "skip: true"
# each entry requires either a 'slug' or a 'title' field

# use the slug if you utilize the _labs collection. this will take info
# from the front matter of the corresponding file in _labs/
# if your filename has a leading zero, quotes are required around the slug.
# if you use the _labs collection, the title field will be useful for
# one-off overrides like holidays or for placeholders; use the title field sparingly

# nonumber supresses the label and numbering for the lab entry
# skip: true will omit the lab from the schedule entirely

# link overrides the default link to the lab page from the collection if
# you provided a slug or provides an external link
labs:
- title: Lab 1
link: https://datahub.berkeley.edu/hub/login?next=%2Fhub%2F
- slug: lab01
- title: Lab 2
link: https://datahub.berkeley.edu/hub/login?next=%2Fhub%2F
- title: Lab 3
- skip: true
- title: Lab 4
Expand Down
39 changes: 34 additions & 5 deletions _data/lectures.yml
Original file line number Diff line number Diff line change
@@ -1,20 +1,49 @@
### LECTURE ORDERING ###
# each entry requires either a 'slug' or a 'title' field
# you may have both if you'd like to override the title from the lecture file
# optionally you may also include a 'nonumber' boolean field to suppress numbering
# and a 'link' field to override the default link to the lecture page or provide an external link

# use the slug if you utilize the _lectures collection. this will take info
# from the front matter of the corresponding file in _lectures/
# if your filename has a leading zero, quotes are required around the slug
# if you use the _lectures collection, the title field will be useful for
# one-off overrides like holidays or for placeholders; use the title field sparingly

# nonumber supresses the label and numbering for the lecture entry
# skip: true will omit the lecture from the schedule entirely

# link overrides the default link to the lecture page from the collection if
# you provided a slug or provides an external link

# readings appear in the third column of the schedule page. If you have a single reading
# provide title and link. If you have multiple readings, provide a list of links with
# text and url fields (no title field necessary in this case). You can skip readings by not
# providing the readings field.

lectures:
- slug: intro
- slug: "02"
readings:
- title: Introduction
link: https://inferentialthinking.com/chapters/01/what-is-data-science/index.html
- slug: 2
readings:
- title: Causality and Experiments
link: https://inferentialthinking.com/chapters/02/causality-and-experiments/index.html
- slug: "03"
readings:
- links:
- text: "Programming in Python"
url: "https://inferentialthinking.com/chapters/03/programming-in-python/"
- text: "Data Types"
url: "https://inferentialthinking.com/chapters/04/data-types/"
- slug: "04"
- slug: "05"
- slug: "06"
- slug: "07"
# - skip: true
- slug: "08"
- title: "No Lecture"
nonumber: true
# link: "https://registrar.berkeley.edu/wp-content/uploads/UCB_AcademicCalendar_2025-26.pdf"
- slug: "09"
- slug: "10"
- slug: "11"
- slug: "11"

15 changes: 0 additions & 15 deletions _data/readings.yml

This file was deleted.

3 changes: 2 additions & 1 deletion _data/syllabus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
# Config you will need to change once per semester #
#######################################################

# The first and last day of class, respectively.
# Set start_date to the Monday of the first week of instruction.
# Set end_date to the Friday of exams week.
start_date: 2026-01-20
end_date: 2026-02-21

Expand Down
24 changes: 24 additions & 0 deletions _discussions/disc01.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
---
title: Discussion 1
description: By the numbers
due: "2024-06-13 11:59:59 PM PST"
gradescope_assignment_id: 3858565
submission_files:
- disc01.pdf
pdfs:
- disc01.pdf
links:
- name: Discussion 1 Handout
url: https://drive.google.com/file/d/1rl5TLpZde5dx15b806IXHqU4NIgZxWli/view
---

<!-- 1. TOC
{:toc}

## Q1: Sample Question

{% include questions/sample_question.md %}

## Q2: Another Question

{% include questions/another_question.md %} -->
Loading
Loading