skills/43-wentorai-research-plugins/skills/analysis/dataviz/redash-analytics-guide/SKILL.md
Guide to Redash for SQL-driven research data dashboards and sharing
npx skillsauth add brycewang-stanford/Awesome-Agent-Skills-for-Empirical-Research redash-analytics-guideInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Redash is an open-source data visualization and dashboarding tool with over 28K stars on GitHub. It is designed for analysts and researchers who prefer writing SQL to explore and visualize data. Redash connects to virtually any data source that supports SQL or has an API, and provides a browser-based query editor with autocomplete, visualization builder, and dashboard composer.
For academic research groups, Redash offers a lightweight, self-hosted alternative to commercial BI tools. Its SQL-first approach is natural for researchers who already work with databases, and its sharing features make it straightforward to create dashboards that the entire lab can access. Unlike Metabase which emphasizes no-code exploration, Redash is specifically designed for users who are comfortable writing queries and want direct control over their data retrieval logic.
Redash supports over 35 data source types, including PostgreSQL, MySQL, SQLite, BigQuery, Elasticsearch, MongoDB, Google Sheets, CSV files, and even custom Python scripts. This versatility means researchers can build unified dashboards that pull data from multiple sources: experiment databases, survey platforms, instrument logs, and cloud storage.
# Clone the Redash setup repository
git clone https://github.com/getredash/setup.git redash-setup
cd redash-setup
# Generate configuration
./setup.sh
# Or manually configure with Docker Compose
version: "3"
services:
redash:
image: redash/redash:latest
command: server
ports:
- "5000:5000"
environment:
REDASH_DATABASE_URL: postgresql://${POSTGRES_USER}:${POSTGRES_PASSWORD}@postgres/redash
REDASH_REDIS_URL: redis://redis:6379/0
REDASH_SECRET_KEY: ${REDASH_SECRET_KEY}
REDASH_MAIL_SERVER: smtp.university.edu
REDASH_MAIL_PORT: 587
REDASH_MAIL_USERNAME: ${MAIL_USERNAME}
REDASH_MAIL_PASSWORD: ${MAIL_PASSWORD}
depends_on:
- postgres
- redis
worker:
image: redash/redash:latest
command: worker
environment:
REDASH_DATABASE_URL: postgresql://${POSTGRES_USER}:${POSTGRES_PASSWORD}@postgres/redash
REDASH_REDIS_URL: redis://redis:6379/0
depends_on:
- redash
scheduler:
image: redash/redash:latest
command: scheduler
environment:
REDASH_DATABASE_URL: postgresql://${POSTGRES_USER}:${POSTGRES_PASSWORD}@postgres/redash
REDASH_REDIS_URL: redis://redis:6379/0
depends_on:
- redash
postgres:
image: postgres:16
environment:
POSTGRES_DB: redash
POSTGRES_USER: ${POSTGRES_USER}
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
volumes:
- pg-data:/var/lib/postgresql/data
redis:
image: redis:7-alpine
volumes:
- redis-data:/data
volumes:
pg-data:
redis-data:
-- Aggregate experiment results by condition and time period
SELECT
e.condition_name,
DATE_TRUNC('month', e.run_date) AS month,
COUNT(*) AS num_runs,
ROUND(AVG(e.primary_outcome)::NUMERIC, 4) AS mean_outcome,
ROUND(STDDEV(e.primary_outcome)::NUMERIC, 4) AS std_outcome,
ROUND(AVG(e.primary_outcome)::NUMERIC - 1.96 * STDDEV(e.primary_outcome)::NUMERIC / SQRT(COUNT(*)), 4) AS ci_lower,
ROUND(AVG(e.primary_outcome)::NUMERIC + 1.96 * STDDEV(e.primary_outcome)::NUMERIC / SQRT(COUNT(*)), 4) AS ci_upper
FROM experiments e
WHERE e.project_id = {{project_id}}
AND e.run_date >= {{start_date}}
GROUP BY e.condition_name, DATE_TRUNC('month', e.run_date)
ORDER BY month, condition_name;
The {{project_id}} and {{start_date}} syntax creates interactive parameter widgets that users can modify without editing the query.
-- Track literature search and screening progress
SELECT
r.review_name,
r.search_database,
COUNT(DISTINCT a.article_id) AS total_found,
COUNT(DISTINCT CASE WHEN s.decision = 'include' THEN a.article_id END) AS included,
COUNT(DISTINCT CASE WHEN s.decision = 'exclude' THEN a.article_id END) AS excluded,
COUNT(DISTINCT CASE WHEN s.decision IS NULL THEN a.article_id END) AS pending,
ROUND(
COUNT(DISTINCT CASE WHEN s.decision IS NOT NULL THEN a.article_id END)::NUMERIC /
NULLIF(COUNT(DISTINCT a.article_id), 0) * 100, 1
) AS screening_progress_pct
FROM systematic_reviews r
JOIN articles a ON a.review_id = r.id
LEFT JOIN screening_decisions s ON s.article_id = a.article_id
WHERE r.review_name = {{review_name}}
GROUP BY r.review_name, r.search_database
ORDER BY total_found DESC;
-- Monitor research grant expenditures
SELECT
g.grant_name,
g.funding_agency,
g.total_budget,
SUM(t.amount) AS total_spent,
g.total_budget - SUM(t.amount) AS remaining,
ROUND(SUM(t.amount)::NUMERIC / g.total_budget * 100, 1) AS pct_spent,
g.end_date,
(g.end_date - CURRENT_DATE) AS days_remaining,
ROUND(
(g.total_budget - SUM(t.amount))::NUMERIC /
NULLIF((g.end_date - CURRENT_DATE), 0), 2
) AS daily_burn_budget
FROM grants g
JOIN transactions t ON t.grant_id = g.id
WHERE g.status = 'active'
GROUP BY g.grant_name, g.funding_agency, g.total_budget, g.end_date
ORDER BY pct_spent DESC;
Redash supports multiple visualization types that can be attached to any query result.
After running a query, click "New Visualization" and configure:
A well-designed research lab dashboard typically includes the following widgets arranged in a logical layout:
Redash dashboards support global parameters that filter all widgets simultaneously:
Dashboard Parameters:
- Project: dropdown linked to projects table
- Date Range: date range picker
- Researcher: dropdown linked to team members table
This allows a single dashboard template to serve multiple research projects.
Configure queries to run on a schedule to keep dashboards current:
Alert: "Low Sample Quality Detected"
Query: samples with quality_score < threshold in last 24h
Condition: When query returns results
Destination: Email to lab manager, Slack channel notification
Rearm after: 1 hour
Redash provides a REST API that researchers can use to integrate dashboards into automated workflows.
import requests
REDASH_URL = "http://redash.lab.internal"
redash_key = os.environ["REDASH_API_KEY"]
# Execute a query and get results
def run_query(query_id, parameters=None):
url = f"{REDASH_URL}/api/queries/{query_id}/results"
headers = {"Authorization": f"Key {redash_key}"}
payload = {"parameters": parameters or {}}
response = requests.post(url, json=payload, headers=headers)
job = response.json().get("job", {})
# Poll for results
while job.get("status") not in (3, 4):
result = requests.get(
f"{REDASH_URL}/api/jobs/{job['id']}",
headers=headers
)
job = result.json().get("job", {})
# Fetch final results
result = requests.get(
f"{REDASH_URL}/api/queries/{query_id}/results.json",
headers=headers
)
return result.json()
# Export dashboard data for reporting
results = run_query(42, {"project_id": 7})
tools
Recommend AND run open-source AI tools, agents, Claude Code / Codex skills, and MCP servers for any stage of a literature review — searching, reading, extracting, synthesizing, screening, citation-checking, and paper writing. Use when the user asks "what tool should I use to..." OR "install/run/use <tool> to ..." for research/lit-review work: automating a survey or related-work section, PDF→Markdown extraction for LLMs (MinerU/marker/docling), PRISMA / systematic review (ASReview), citation-backed Q&A over PDFs (PaperQA2), wiring papers into Claude/Cursor via MCP (arxiv/paper-search/zotero servers), or chatting with a Zotero library. Ships a launcher (scripts/litrun.py) that installs each tool in an isolated venv and runs it. Curated catalog of 70+ vetted projects. 支持中英文(用于「文献综述工具选型」与「一键安装/运行」)。
development
Route empirical-research requests through the Auto-Empirical Research Skills catalog when this whole repository is installed as one skill in Codex, CodeBuddy, Claude Code, or another IDE. Use to choose and load the right vendored AERS skill for causal inference, econometrics, replication, data acquisition, manuscript writing, peer review and referee responses, citation checking, de-AIGC editing, or full empirical-paper workflows without reading the entire repository at once.
documentation
Use when the project collects primary data or runs a field, lab, or survey experiment, before the intervention begins — write the pre-analysis plan, size the sample from a power calculation, and register with the AEA RCT Registry. Apply after the design is chosen in aer-identification and before any outcome data are seen.
tools
Guide economists to authoritative data sources with explicit, confirmed data specifications before retrieval; interfaces with Playwright MCP to navigate portals and extract real data, not articles about data.