{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# Residual plot" ] }, { "cell_type": "code", "execution_count": 1, "metadata": { "execution": { "iopub.execute_input": "2025-11-05T13:40:25.454581Z", "iopub.status.busy": "2025-11-05T13:40:25.454455Z", "iopub.status.idle": "2025-11-05T13:40:25.458534Z", "shell.execute_reply": "2025-11-05T13:40:25.458355Z" } }, "outputs": [], "source": [ "import pandas as pd\n", "\n", "from lets_plot import *\n", "from lets_plot.bistro.residual import *" ] }, { "cell_type": "code", "execution_count": 2, "metadata": { "execution": { "iopub.execute_input": "2025-11-05T13:40:25.459428Z", "iopub.status.busy": "2025-11-05T13:40:25.459343Z", "iopub.status.idle": "2025-11-05T13:40:25.461286Z", "shell.execute_reply": "2025-11-05T13:40:25.461043Z" } }, "outputs": [ { "data": { "text/html": [ "\n", "
\n", " \n", " " ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "LetsPlot.setup_html()" ] }, { "cell_type": "code", "execution_count": 3, "metadata": { "execution": { "iopub.execute_input": "2025-11-05T13:40:25.474050Z", "iopub.status.busy": "2025-11-05T13:40:25.473953Z", "iopub.status.idle": "2025-11-05T13:40:25.559906Z", "shell.execute_reply": "2025-11-05T13:40:25.559632Z" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "(150, 5)\n" ] }, { "data": { "text/html": [ "| \n", " | sepal_length | \n", "sepal_width | \n", "petal_length | \n", "petal_width | \n", "species | \n", "
|---|---|---|---|---|---|
| 0 | \n", "5.1 | \n", "3.5 | \n", "1.4 | \n", "0.2 | \n", "setosa | \n", "
| 1 | \n", "4.9 | \n", "3.0 | \n", "1.4 | \n", "0.2 | \n", "setosa | \n", "
| 2 | \n", "4.7 | \n", "3.2 | \n", "1.3 | \n", "0.2 | \n", "setosa | \n", "
| 3 | \n", "4.6 | \n", "3.1 | \n", "1.5 | \n", "0.2 | \n", "setosa | \n", "
| 4 | \n", "5.0 | \n", "3.6 | \n", "1.4 | \n", "0.2 | \n", "setosa | \n", "