Rverse Analytics
  • Home
  • Services
    • Services overview
    • Clinical R toolkit
    • Industries
    • Case studies
    • FAQ
  • Tools
    • All calculators
    • t-test
    • Z-score / normal
    • Chi-square test
    • One-way ANOVA
    • Sample size & power
    • p-value
    • Correlation
    • Linear regression
    • Which test should I use?
    • Markdown previewer
    • Live demos
    • gtsummary live demo
  • Learn
    • Learn R
    • Learn Quarto
    • Learn Markdown
  • Blog
  • Resources
  • R News
  • About
  • Contact

Rverse Analytics

R consulting studio for statistical analysis, Shiny applications and reproducible reporting — biostatistics-grade rigour, shipped as code you own.

Boutique R Studio

Data analysis, engineered in R.

We deliver statistical analysis, interactive Shiny applications and fully reproducible reports — built on a rigorous biostatistics backbone and shipped as code you own.

Explore our services Get in touch

What we do

Analysis, applications and automation

Statistical Analysis

From study design to publication-ready results: hypothesis testing, regression modelling and power analysis, all scripted and reproducible.

Shiny Applications

Interactive dashboards and internal tools that turn static spreadsheets into living decision-support systems.

Reproducible Reporting

Automated Quarto and R Markdown pipelines: one command from raw data to polished Word, PDF or HTML deliverables.

See all five services

Why us

Rigour you can rerun

R-native, end to end. The analysis, the figures and the report come from one scripted pipeline — no translating between tools.

Reproducible by default. Every deliverable regenerates from raw data with a single command, so results always match the numbers.

Biostatistics backbone. Methodology forged in clinical research, and code you own outright after handover.

Explore the industries we serve, browse case studies, or read the frequently asked questions.

Free tools

Statistics calculators, free to use

No sign-up, nothing uploaded — fast browser-based calculators built on the same engine we use in client work, verified against R.

Sample size & power

How many participants do you need? Exact noncentral-t, matched to R.

Which test should I use?

Answer a few questions, get the right test and the R function to run it.

Correlation calculator

Pearson r, r², significance and a scatter plot from paired data.

See all free calculators

Learn interactively

Free courses that run in your browser

Edit real code and see the result instantly — no install, nothing to set up. From R fundamentals to reproducible reporting.

Learn R

Run R live in the browser: vectors, data frames, plotting and your first statistics.

Learn Markdown

Master Markdown syntax with a live editor on every page — plus a standalone previewer.

Learn Quarto

Turn text and R code into reproducible HTML, PDF and Word reports — with runnable lessons.

Our stack

One coherent ecosystem

R logo tidyverse ggplot2 Shiny Quarto lme4 · survival

The R logo is © The R Foundation, used under CC-BY-SA 4.0.

R, live on this page

Every figure on this site is rendered by R at build time — no screenshots, no stock images. Here is the code and its output:

library(ggplot2)

set.seed(42)
d <- data.frame(
  dose     = rep(c(2, 4, 8, 16, 32), each = 30),
  response = unlist(lapply(c(2, 4, 8, 16, 32),
                           function(x) rnorm(30, 20 + 8 * log2(x), 4)))
)

ggplot(d, aes(factor(dose), response)) +
  geom_boxplot(fill = "#2f6fed", alpha = 0.15, colour = "#1b2a4a",
               outlier.shape = NA) +
  geom_jitter(width = 0.15, alpha = 0.5, colour = "#17a2b8", size = 1.6) +
  labs(
    title = "Dose–response relationship, simulated trial data",
    x = "Dose (mg)", y = "Response score"
  ) +
  theme_minimal(base_family = "sans") +
  theme(
    plot.title = element_text(face = "bold", colour = "#1b2a4a"),
    panel.grid.minor = element_blank()
  )

From the blog

Latest posts

Biostatistics datasets built into R (that you can explore in the browser)

r-tutorial
biostatistics
datasets
teaching

A guided tour of the clinical and biostatistics datasets that ship with R and its packages — infert, esoph, lung, pbc, birthwt, trial and the medicaldata collection — with what each is good for, and a browser playground to try them with no install.

Jul 10, 2026

gtsummary for beginners: build a Table 1 from clinical data, step by step

clinical
biostatistics
gtsummary
r-tutorial

A gentle, hands-on gtsummary tutorial in R. Starting from a clinical trial dataset, we build a publication-ready Table 1 one verb at a time — then you can run it yourself in the browser.

Jul 10, 2026

The Markdown cheat sheet (with a live editor)

markdown
reference

A compact Markdown syntax reference: headings, emphasis, lists, links, images, code, blockquotes and tables — with the rendered result beside each rule.

Jul 9, 2026
No matching items

All posts

© 2026 Rverse Analytics — a boutique R studio.

R consulting · statistics · Shiny · reproducible reporting
We read R-bloggers · Mastodon · Bluesky

Built with Quarto & R.