Two ways to carry this seminar forward: scaling the same methods to bigger, real research datasets on your own computer, and a curated shelf of free resources to keep learning without a university library.
Everything in the labs ran inside claude.ai in your browser: you upload a file, ask in plain English, and Claude computes the answer. That is perfect for learning and for small-to-medium datasets. But it has real limits — and the good news is that the same skill you practiced lifts those limits.
The key idea: instead of asking Claude to run the analysis, ask Claude to write the code — in Python or R — and then run that code on your own computer, where there is no upload limit and you control the hardware. You still direct the analysis in plain English; only the place it runs changes.
You need two things: a language to run the code, and an editor to write and run it in. Pick one language and one editor.
The most common language for data science and AI. Install from python.org, or via Anaconda for an all-in-one bundle.
python.org →The classic language for statistics. Install R, then RStudio as its dedicated editor — a great pairing for stats.
R + RStudio →A friendly, popular editor that works with both Python and R. Add the Python extension and you are ready.
code.visualstudio.com →Python plus hundreds of data-science packages in one installer — the easiest start if you do not want to manage pieces yourself.
anaconda.com →Not sure which to pick? For most Fellows: install Anaconda (which includes Python) and VS Code. That combination handles everything in Day 1 and Day 2 on datasets of almost any size. Prefer statistics and already know R? R + RStudio is equally good.
The prompt is almost identical to the ones you used in the labs — you just ask for a script and point it at a folder on your computer instead of an uploaded file. Claude writes the complete program; you paste it into your editor and press Run.
Write a complete Python script that: 1. Reads my data file "GOV2.csv" from the folder C:\data\ (columns: country, iso3, year, Y1, Y2, X1-X20). 2. Builds a classification tree (CART) predicting Y2 from X1-X20 only, with a 70/30 train/test split and max depth 3. 3. Prints the tree rules as text, the test accuracy, and the confusion matrix. 4. Uses only common libraries (pandas, scikit-learn) and includes comments explaining each step so I can learn from it. Tell me exactly which libraries to install first and the command to run the script.
Swap the details for any analysis from the seminar — random forest, neural network, dictionary sentiment, LLM-style text extraction — and for R, just say “Write an R script that…” instead. Claude will also tell you the one-time install command (for example pip install pandas scikit-learn) and how to run the file.
If a script errors, copy the red error message back into Claude and ask “how do I fix this?” — debugging by pasting the error is a normal, fast part of the workflow, and a great way to learn.
Your laptop's regular processor (the CPU) handles the trees, forests, and small models from this seminar comfortably, even on large tables. Some tasks, though, are dramatically faster on a GPU — a graphics processor built for the massive parallel math that deep learning uses.
You do not need to buy one. Free cloud notebooks give you a GPU in the browser: Google Colab and Kaggle Notebooks both offer free GPU time — you can ask Claude to write code specifically for Colab. For sustained or very heavy work, paid cloud GPUs (Google Cloud, AWS, Azure) or a university computing cluster are the next step.
Rule of thumb: start on your own computer with Python or R. Only reach for a GPU when you are training deep-learning models or a job is genuinely too slow — and even then, a free Colab GPU is usually enough to begin.
A full reference deck accompanies the seminar — every paper, dataset, video, and tool, each with a free and legal way to reach it (no university subscription required). Download the complete document, or use the shortlist of essentials below.
All sources with open-access routes · PDF
No library access? Two habits solve most paywalls: search a paper's title on Google Scholar and click “All versions” for a free copy, and install the free Unpaywall browser extension.