Live Analytics Lab

Code, statistics & dashboards in your browser — no install.

Six free tools — full code notebooks, point-and-click statistics, and live dashboards. All in your browser, in seconds.

How it works

From click to code in under a minute.

1

Click Launch

A clean R or Python environment opens in a new tab. Loading takes a few seconds — no setup, no sign-up.

2

Write & run code

Real RStudio or Jupyter, full functionality. Standard packages preinstalled — load datasets, run models, plot results.

3

Save before you close

Sessions are temporary. Download your scripts or notebooks locally before closing the tab — see the heads-up below.

Heads up

Sessions are temporary & private — your work disappears when the tab closes. Always download your .R / .ipynb files locally before you finish.

Try this first

A taste of what you can do.

Paste either snippet into a fresh session to see the environment in action.

R · RStudio
# A quick look at the iris dataset
summary(iris)
plot(iris$Sepal.Length, iris$Petal.Length,
     col = iris$Species, pch = 19,
     main = "Sepal vs Petal Length")
Python · Jupyter
# Load a sample dataset and plot it
import seaborn as sns
import matplotlib.pyplot as plt

iris = sns.load_dataset("iris")
sns.scatterplot(data=iris,
                x="sepal_length",
                y="petal_length",
                hue="species")
plt.show()

Read next →

Browse our free analytics books

Hands-on guides for Business Analytics, R Programming, Power BI, and Decision Science — written to pair with the lab.