This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* The event handler triggered when editing the spreadsheet. | |
* @param {Event} e The onEdit event. | |
* @see https://developers.google.com/apps-script/guides/triggers#onedite | |
*/ | |
function onEdit(e) { | |
// columns | |
// PlayerName Number SpotifyURL StartTime EndTime | |
// get the sheet and the range of data |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from typing import Literal, List | |
import surfplot | |
import matplotlib as plt | |
import nibabel as nib | |
import numpy as np | |
import pandas as pd | |
def plot_atlas_on_surf(atlas_path: str, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
##### STEP 1 ##### | |
# Step 1 for Windows | |
winget install python.python.3.13 astral-sh.uv | |
# Step 1 for Linux/MacOS | |
curl -LsSf https://astral.sh/uv/install.sh | sh | |
##### STEP 2 ##### | |
# All OSes | |
uv venv ~/Envs/dsi_participant -p 3.9 --python-preference only-managed |
OlderNewer