Skip to content

Commit 428082f

Browse files
committed
Polish course site layout and metadata
1 parent 34b82e0 commit 428082f

12 files changed

Lines changed: 172 additions & 67 deletions

File tree

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ Course materials for **Processing Complex Data**, a Methodology and Statistics m
44

55
Website: <https://processingcomplexdata.github.io/>
66

7-
The course site is built with Jekyll and hosted on GitHub Pages. The landing page is [`index.md`](index.md). The course manual is [`course_manual.md`](course_manual.md), project guidelines are in [`project_guidelines.md`](project_guidelines.md), and the six group projects live in [`projects/`](projects/).
7+
Lecturer: [Javier Garcia-Bernardo](https://javier.science/), Assistant Professor of Social Data Science, Department of Methodology & Statistics, Utrecht University.
8+
9+
The course site is built with Jekyll and hosted on GitHub Pages. The landing page is [index.md](index.md). The course manual is [course_manual.md](course_manual.md), project guidelines are in [project_guidelines.md](project_guidelines.md), and the six group projects live in [projects/](projects/).
810

911
All materials are licensed [CC-BY-4.0](LICENSE).

_config.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
title: PCD
2-
description: Materials for the Methodology and Statistics master course <i>Processing Complex Data</i>.
2+
description: Materials for the Methodology and Statistics master course Processing Complex Data.
3+
sidebar: >-
4+
<span class="sidebar-summary">This webpage contains all materials for the Methodology and Statistics master course <i>Processing Complex Data</i> (PCD). The materials on this website are <a href="https://creativecommons.org/licenses/by/4.0/">CC-BY-4.0 licensed</a>.</span>
5+
<span class="sidebar-block"><strong>Lecturer</strong><br><a href="https://javier.science/">Javier Garcia-Bernardo</a><br>Assistant Professor of Social Data Science<br>Department of Methodology &amp; Statistics<br>Utrecht University</span>
6+
<span class="sidebar-block sidebar-links"><a href="/course_manual.html">Course manual</a><a href="/project_guidelines.html">Project guidelines</a><a href="https://processingcomplexdata.github.io/">Course website</a></span>
37
theme: jekyll-theme-minimal
48
logo: /assets/img/logo.svg
59
github:

_layouts/default.html

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
<!DOCTYPE html>
2+
<html lang="{{ site.lang | default: "en-US" }}">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
6+
<meta name="viewport" content="width=device-width, initial-scale=1">
7+
8+
{% seo %}
9+
<link rel="stylesheet" href="{{ "/assets/css/style.css?v=" | append: site.github.build_revision | relative_url }}">
10+
<!--[if lt IE 9]>
11+
<script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.min.js"></script>
12+
<![endif]-->
13+
{% include head-custom.html %}
14+
</head>
15+
<body>
16+
<div class="wrapper">
17+
<header>
18+
<h1><a href="{{ "/" | absolute_url }}">{{ site.title | default: site.github.repository_name }}</a></h1>
19+
20+
{% if site.logo %}
21+
<img src="{{ site.logo | relative_url }}" alt="Logo" />
22+
{% endif %}
23+
24+
<p>{{ site.sidebar | default: site.description | default: site.github.project_tagline }}</p>
25+
26+
{% if site.github.is_project_page %}
27+
<p class="view"><a href="{{ site.github.repository_url }}">View the Project on GitHub <small>{{ site.github.repository_nwo }}</small></a></p>
28+
{% endif %}
29+
30+
{% if site.github.is_user_page %}
31+
<p class="view"><a href="{{ site.github.owner_url }}">View My GitHub Profile</a></p>
32+
{% endif %}
33+
34+
{% if site.show_downloads %}
35+
<ul class="downloads">
36+
<li><a href="{{ site.github.zip_url }}">Download <strong>ZIP File</strong></a></li>
37+
<li><a href="{{ site.github.tar_url }}">Download <strong>TAR Ball</strong></a></li>
38+
<li><a href="{{ site.github.repository_url }}">View On <strong>GitHub</strong></a></li>
39+
</ul>
40+
{% endif %}
41+
</header>
42+
<section>
43+
44+
{{ content }}
45+
46+
</section>
47+
<footer>
48+
{% if site.github.is_project_page %}
49+
<p>This project is maintained by <a href="{{ site.github.owner_url }}">{{ site.github.owner_name }}</a></p>
50+
{% endif %}
51+
<p><small>Hosted on GitHub Pages &mdash; Theme by <a href="https://github.com/orderedlist">orderedlist</a></small></p>
52+
</footer>
53+
</div>
54+
<script src="{{ "/assets/js/scale.fix.js" | relative_url }}"></script>
55+
</body>
56+
</html>

assets/css/style.scss

Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
---
2+
---
3+
4+
@import "jekyll-theme-minimal";
5+
6+
body {
7+
padding: 42px;
8+
}
9+
10+
.wrapper {
11+
width: min(1120px, calc(100vw - 84px));
12+
}
13+
14+
header,
15+
footer {
16+
width: 310px;
17+
}
18+
19+
header p {
20+
font-size: 12.5px;
21+
line-height: 1.45;
22+
}
23+
24+
header img {
25+
max-width: 250px;
26+
margin: 8px 0 22px;
27+
}
28+
29+
.sidebar-block {
30+
display: block;
31+
margin-top: 14px;
32+
}
33+
34+
.sidebar-links a {
35+
display: block;
36+
margin: 3px 0;
37+
}
38+
39+
section {
40+
width: 740px;
41+
}
42+
43+
@media print, screen and (max-width: 960px) {
44+
body {
45+
padding: 28px;
46+
}
47+
48+
.wrapper {
49+
width: auto;
50+
}
51+
52+
header,
53+
footer,
54+
section {
55+
width: auto;
56+
}
57+
58+
header img {
59+
max-width: 190px;
60+
}
61+
}
62+
63+
@media print, screen and (max-width: 480px) {
64+
body {
65+
padding: 15px;
66+
}
67+
}

assets/img/logo.svg

Lines changed: 28 additions & 45 deletions
Loading

index.md

Lines changed: 7 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,13 @@
11
# Processing Complex Data
22

3-
This webpage contains all materials for the Methodology and Statistics master course **Processing Complex Data (PCD)**. The materials on this website are [CC-BY-4.0](https://creativecommons.org/licenses/by/4.0/) licensed.
4-
5-
![cc](https://mirrors.creativecommons.org/presskit/icons/cc.svg) ![by](https://mirrors.creativecommons.org/presskit/icons/by.svg)
3+
**Lecturer:** [Javier Garcia-Bernardo](https://javier.science/), Assistant Professor of Social Data Science, Department of Methodology & Statistics, Utrecht University.
64

75
## About the course
86

97
Contrary to what most introductory data science and statistics courses teach, real-world scientific data come in an enormous variety of formats, sizes, structures, and procedures — from simple tables to spatiotemporal arrays, normalized relational schemas, nested API responses, raw scraped web pages, networks, and domain-specific scientific standards. This course gives students hands-on experience with handling, processing, and modelling six families of complex data, in a hackathon-style format where each group goes deep on one data type and teaches the rest of the class.
108

119
The narrative spine of the course is *from raw traces to defensible claims*. Each group works through a single pipeline: raw source → operationalized clean object → baseline model with one sensitivity check → presentation.
1210

13-
## Course materials
14-
15-
- [Course manual](course_manual.md) — official course description, learning goals, assessment, and materials.
16-
- [Project guidelines](project_guidelines.md) — workflow files, raw-data policy, decision logs, quality checks, and contribution tracking.
17-
1811
## Lectures
1912

2013
| Week | Title | Lecture |
@@ -30,9 +23,9 @@ The narrative spine of the course is *from raw traces to defensible claims*. Eac
3023

3124
| Variant | Data family | Example research question |
3225
| :------------------- | :------------------------------------------------------------- | :--------------------------------------------------------------------------------------------------------- |
33-
| Geospatial | [`projects/geospatial.md`](projects/geospatial.md) | What is the relation between municipal land use and population composition? |
34-
| Networks | [`projects/networks.md`](projects/networks.md) | What is the relationship between gender and cross-program relations in high school? |
35-
| Messy web text | [`projects/messy_web_text.md`](projects/messy_web_text.md) | Do company sustainability pages differ linguistically from public-interest climate information pages? |
36-
| Relational database | [`projects/relational_database.md`](projects/relational_database.md) | Which driver, constructor, grid, circuit, and season characteristics are associated with F1 finishing points? |
37-
| Time series | [`projects/time_series.md`](projects/time_series.md) | How does an fMRI signal change across NSD scan sessions? |
38-
| API data | [`projects/api_data.md`](projects/api_data.md) | Which study attributes are associated with completed versus ongoing clinical trials? |
26+
| Geospatial | [projects/geospatial.md](projects/geospatial.md) | What is the relation between municipal land use and population composition? |
27+
| Networks | [projects/networks.md](projects/networks.md) | What is the relationship between gender and cross-program relations in high school? |
28+
| Messy web text | [projects/messy_web_text.md](projects/messy_web_text.md) | Do company sustainability pages differ linguistically from public-interest climate information pages? |
29+
| Relational database | [projects/relational_database.md](projects/relational_database.md) | Which driver, constructor, grid, circuit, and season characteristics are associated with F1 finishing points? |
30+
| Time series | [projects/time_series.md](projects/time_series.md) | How does an fMRI signal change across NSD scan sessions? |
31+
| API data | [projects/api_data.md](projects/api_data.md) | Which study attributes are associated with completed versus ongoing clinical trials? |

projects/api_data.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
- Programming language: `R` (suggested) or `python` (allowed)
66
- Expert contact: `Javier Garcia-Bernardo`
77

8-
> **Canonical course conventions live in [`project_guidelines.md`](../project_guidelines.md).** That file is the source of truth for the four required workflow files (`week1_explore.qmd`, `week2_operationalize_clean.qmd`, `week3_model.qmd`, `week4_storytelling.qmd`), the `data/model_data.rds` -> `data/model_results.rds` pipeline, the raw-data policy, quality-check requirements, decision logs, and contribution tracking. Read it before starting and treat anything below as project-specific guidance on top of those conventions.
8+
> **Canonical course conventions live in [project_guidelines.md](../project_guidelines.md).** That file is the source of truth for the four required workflow files (`week1_explore.qmd`, `week2_operationalize_clean.qmd`, `week3_model.qmd`, `week4_storytelling.qmd`), the `data/model_data.rds` -> `data/model_results.rds` pipeline, the raw-data policy, quality-check requirements, decision logs, and contribution tracking. Read it before starting and treat anything below as project-specific guidance on top of those conventions.
99
1010
## Tutorial framing
1111

projects/geospatial.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
- Programming language: `R` (suggested) or `python` (allowed)
66
- Expert contact: TBD, Marco Helvich
77

8-
> **Canonical course conventions live in [`project_guidelines.md`](../project_guidelines.md).** That file is the source of truth for the four required workflow files (`week1_explore.qmd`, `week2_operationalize_clean.qmd`, `week3_model.qmd`, `week4_storytelling.qmd`), the `data/model_data.rds` -> `data/model_results.rds` pipeline, the raw-data policy, quality-check requirements, decision logs, and contribution tracking. Read it before starting and treat anything below as project-specific guidance on top of those conventions.
8+
> **Canonical course conventions live in [project_guidelines.md](../project_guidelines.md).** That file is the source of truth for the four required workflow files (`week1_explore.qmd`, `week2_operationalize_clean.qmd`, `week3_model.qmd`, `week4_storytelling.qmd`), the `data/model_data.rds` -> `data/model_results.rds` pipeline, the raw-data policy, quality-check requirements, decision logs, and contribution tracking. Read it before starting and treat anything below as project-specific guidance on top of those conventions.
99
1010
## Tutorial framing
1111

projects/messy_web_text.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
- Programming language: `python` (suggested) or `R` (allowed)
66
- Expert contact: TBD, Anastasia?
77

8-
> **Canonical course conventions live in [`project_guidelines.md`](../project_guidelines.md).** That file is the source of truth for the four required workflow files (`week1_explore.qmd`, `week2_operationalize_clean.qmd`, `week3_model.qmd`, `week4_storytelling.qmd`), the `data/model_data.rds` -> `data/model_results.rds` pipeline, the raw-data policy, quality-check requirements, decision logs, and contribution tracking. Read it before starting and treat anything below as project-specific guidance on top of those conventions.
8+
> **Canonical course conventions live in [project_guidelines.md](../project_guidelines.md).** That file is the source of truth for the four required workflow files (`week1_explore.qmd`, `week2_operationalize_clean.qmd`, `week3_model.qmd`, `week4_storytelling.qmd`), the `data/model_data.rds` -> `data/model_results.rds` pipeline, the raw-data policy, quality-check requirements, decision logs, and contribution tracking. Read it before starting and treat anything below as project-specific guidance on top of those conventions.
99
1010
## Tutorial framing
1111

projects/networks.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
- Programming language: `python` (suggested) or `R` (allowed)
88

9-
> **Canonical course conventions live in [`project_guidelines.md`](../project_guidelines.md).** That file is the source of truth for the four required workflow files (`week1_explore.qmd`, `week2_operationalize_clean.qmd`, `week3_model.qmd`, `week4_storytelling.qmd`), the `data/model_data.rds` -> `data/model_results.rds` pipeline, the raw-data policy, quality-check requirements, decision logs, and contribution tracking. Read it before starting and treat anything below as project-specific guidance on top of those conventions.
9+
> **Canonical course conventions live in [project_guidelines.md](../project_guidelines.md).** That file is the source of truth for the four required workflow files (`week1_explore.qmd`, `week2_operationalize_clean.qmd`, `week3_model.qmd`, `week4_storytelling.qmd`), the `data/model_data.rds` -> `data/model_results.rds` pipeline, the raw-data policy, quality-check requirements, decision logs, and contribution tracking. Read it before starting and treat anything below as project-specific guidance on top of those conventions.
1010
1111
## Tutorial framing
1212

0 commit comments

Comments
 (0)