This repo provides resources to be used before and after the 2024-APR-05 workshop. During the workshop, participants will also practice Git commands by cloning and making pull requests to this repo.
| Activity | Summary notes | |
|---|---|---|
| 0 | - Using R in Colab - Colab explaining Colab - Colab explaining Markdown |
|
| 1a | myfirstpy_colab | Colab "How-to" Slides |
| 1b | Workshop_demo1 | Highlighting polars, seaborn, plotly |
| 2 | Workshop_demo2 | - Interactive maps with folium+bianca - Other packages to try: geopandas xarray |
| 3 | Data I/O (input/output) |
Examples in .json, .xlsx, .data, .csv, .pdf, .pkl |
| 4 | - Basics of text processing - Excel workbook - Downloading files from a website - SQLite - Benchmarking demo - polars cheatsheet - plotly for interactive data visualization |
import os
from google.colab import drive
drive.mount('/content/drive')
my_work_dir = '/content/drive/MyDrive/my_work_dir/'
my_work_dir
try:
os.mkdir( my_work_dir )
except Exception as e:
print( e )