A visualization tool for analyzing student learning paths in educational software. Built with React + TypeScript + Vite + SWC (with Rust compiler).
This tool visualizes student learning paths through educational content, showing:
- The sequence of steps students take
- How many students follow each path
- Success/failure rates at each step
- Common patterns in student progression
-
Path Visualization
- Interactive directed graph showing student progression
- Edge thickness indicates number of unique students following each path
- Color coding for success (green) and failure (red) rates
- Node ranking based on step sequence
-
Filtering Options
- Filter by student progress status (GRADUATED, PROMOTED, NOT_COMPLETED)
- Toggle self-loops (transitions back to the same step)
- Adjust minimum student threshold for edge visibility
- View top 5 most common student paths
-
Interactive Elements
- Hover over edges to see detailed statistics
- Click nodes to see student counts and error rates
- Export graph as high-quality PNG
- Responsive design that works on different screen sizes
- Make sure you have
Node.js
installed. You can download it from https://nodejs.org/en/download/ - This uses
bun
to run, build, and deploy. You will need to have thebun
command installed. You can install it by runningnpm install -g @bun/cli
. Docs: https://bun.sh/ - Run
bun install
to download the necessary dependencies. - You will need a local .env file with secret variables. Reach out to Ethan for these.
- Run
bun run dev
to start the development server.
The application accepts the following file formats:
- CSV (Comma Separated Values)
- TSV (Tab Separated Values)
Your data file must include the following fields:
Time
: Can be either a string or numberStep Name
: StringOutcome
: StringCF (Workspace Progress Status)
: StringProblem Name
: StringAnon Student Id
: String
Time,Step Name,Outcome,CF (Workspace Progress Status),Problem Name,Anon Student Id
2024-01-01 10:00:00,Step 1,OK,GRADUATED,Problem 1,student123
2024-01-01 10:01:00,Step 2,ERROR,NOT_COMPLETED,Problem 1,student123
-
Upload Data
- Click the upload button to select your data file
- The file should be in CSV or TSV format with the required fields
-
View the Graph
- The main graph shows all student paths
- Edge thickness represents the number of unique students following each path
- Colors indicate success (green) or failure (red) rates
- Hover over edges to see detailed statistics
-
Filter and Adjust
- Use the filter dropdown to view paths for specific student progress statuses
- Toggle self-loops on/off to include/exclude transitions back to the same step
- Adjust the minimum student threshold to show only paths followed by a certain number of students
- The threshold can be set as a percentage of total students or as an absolute number
-
Analyze Patterns
- View the top 5 most common student paths
- Click on nodes to see detailed statistics about student progression
- Export the graph as a PNG for sharing or documentation
- Edges are counted based on unique students rather than total transitions
- If a student makes the same transition multiple times, it's counted only once
- Edge thickness is normalized relative to the most common path
- Nodes are ranked based on their position in the step sequence
- This helps visualize the natural progression through the content
- Green: Successful transitions (OK outcome)
- Red: Failed transitions (ERROR outcome)
- Blue: Hint-related transitions (INITIAL_HINT, HINT_LEVEL_CHANGE)
- Yellow: Just-in-time feedback (JIT, FREEBIE_JIT)