Getting started
Pocketstats is a suite of simulation and analysis tools for small businesses. It includes three tools:
- Process Map — model a workflow as a network of nodes, run discrete-event simulations, and identify bottlenecks.
- Spreadsheet Sim — take an existing Excel workbook, mark uncertain inputs as probability distributions, and run a Monte Carlo simulation over your model.
- Probability Playground — write a quick back-of-the-envelope model in a mini-language and instantly see the output distribution as a histogram.
Quick start
Process Map
- You sign in and go to App → Process Map. The canvas opens with an empty diagram.
- You press
Sto place a Start node. A Start node appears on the canvas. - You press
Tto place a Task node. A Task node appears where you click. - You press
Eto place an End node. An End node appears on the canvas. - You press
Cto activate the Connect tool, then draw edges between nodes. The nodes connect with an arrow. - You click the simulation icon on any node to set service time distributions. A settings panel opens for that node.
- You press Run in the header to launch a simulation. Results appear in the sidebar once the simulation finishes.
Keyboard shortcuts
Use S (Start), T (Task), E (End), and C (Connect) to build your diagram without reaching for the toolbar.
Spreadsheet Sim
- You sign in with a Pro account and go to App → Spreadsheet Sim. The Spreadsheet Sim workspace opens.
- You click Upload .xlsx and choose your workbook. Your workbook loads and its sheets appear in the editor.
- In the sidebar, you click + Add under Assumptions to mark uncertain cells. The cell is highlighted and you can choose a probability distribution.
- You click + Add under Outputs to select result cells. The selected cells appear in the Outputs list.
- You set the rep count and click Run. A progress indicator appears and results display when the simulation finishes.
Probability Playground
Always free
Probability Playground will always be free with an account.
- You go to pocketstats.io/app/playground/. The editor opens with a sample model.
- You type a model in the editor, for example:
revenue ~ norm(50000, 10000); costs ~ norm(30000, 5000); profit = revenue - costs;The histogram updates instantly as you type.
API access
note
You can authenticate with a session cookie (browser) or an API key Bearer token (scripts and integrations).
All tools expose a REST API under /api/. See the API reference for endpoint details.