Skip to content

Reports in Rime Editor

The Report tab is the editor-facing view of the current generated report. It should feel like evidence, not a second authoring format: one current spec, one current run, one report preview.

Rime Editor report preview showing a report DAG and output sections.

Use the in-app report when you want to answer:

  • Which nodes ran, cached, failed, or skipped?
  • What did each node output?
  • Are output sizes plausible?
  • Did any statistical warning change how the result should be interpreted?
  • Is the generated HTML ready to open in a browser?

Use View in browser when you need to inspect the final artifact with browser devtools, print/PDF behavior, or shareable layout.

The report DAG is a compact map of the run. Nodes should show:

  • node label and id
  • kind
  • status color
  • output size tuple such as (6, 8)
  • multiple outputs as (...), (...)
  • warning state when assumption checks fire

Edges are intentionally simple curves. Direction comes from the top-to-bottom graph layout; arrowheads are not required for review.

Table outputs should show shape and preview. Object outputs from statistical nodes should show the important fields as a stat block.

For example, a correlation node should make these visible together:

  • coefficient
  • p_value
  • n
  • method
  • coefficient_ci_95
  • warnings such as Pearson/Spearman disagreement

That combination matters more than a raw JSON dump.

Rime’s statistical nodes can emit assumption warnings during execution. The report renderer groups them as info, warning, or critical callouts.

Examples:

  • chi-square: expected cells below 1 or many expected cells below 5
  • t-test/ANOVA: very small groups, skew, outlier rate, variance ratio
  • correlation: small sample, Pearson/Spearman disagreement
  • linear regression: small sample, high-residual outliers

The editor should not make users hunt through logs for these. They belong beside the statistic.

The editor preview and CLI report are the same artifact path in different contexts:

Terminal window
rime build pipeline.dag.yaml

The editor helps review the report while you are still shaping the DAG. The CLI is the automation surface for producing it in CI or a scripted launch workflow.