generated from Sydney-Informatics-Hub/training-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.qmd
65 lines (36 loc) · 2.11 KB
/
index.qmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
---
title: "Parallel Python"
output:
html_document:
toc: false
toc_float: false
---
This course is aimed at researchers, students, and industry professionals who want to learn intermediate python skills applied to scientific computing and data science.
## Trainers
* Kristian Maras (Kris) (MSc Mathematics / Ba Commerce)
* Thomas Mauch (Tom) (PhD in astronomy)
* Nathaniel (Nate) Butterworth (PhD Computational Geophysics)
## Course pre-requisites and setup requirements
Introductory Python experience recommended.
## Code of Conduct
We expect all attendees of our training to follow our code of conduct, including bullying, harassment and discrimination prevention policies.
In order to foster a positive and professional learning environment we encourage the following kinds of behaviours at all our events and on our platforms:
* Use welcoming and inclusive language
* Be respectful of different viewpoints and experiences
* Gracefully accept constructive criticism
* Focus on what is best for the community
* Show courtesy and respect towards other community members
Our full CoC, with incident reporting guidelines, is available [here](https://sydney-informatics-hub.github.io/codeofconduct/).
## General session timings
* A. Intoduction and Revise Python Data Manipulation and Pandas Data Structure
* B. Why Polars is a better option for dataframes
* C. Why Dask provides an ecosystem of tools that can run on clusters of machines.
## Setup Instructions
**For local installation**:
`git clone https://github.com/Sydney-Informatics-Hub/ParallelPython.git`
`cd ParallelPython`
`conda env create -f environment.yml`
`conda activate parallel`
**Google Colab**:
Alternatively, you can use Google co-lab, which requires you to sign into your google account. Go to [Google Colab](https://colab.research.google.com/), and click "new notebook". Colab is very similar to jupyter notebook except the compute is run on google cloud infrastructure.
Most packages are by defualt installed. If a package is needed you can run the pip install with the "!" prefix. ie. `! pip install ucimlrepo`. This access the underlying terminal.