{ "cells": [ { "cell_type": "markdown", "id": "social-orange", "metadata": {}, "source": [ "The `viridis` color maps are designed to be perceptually-uniform, both in regular form and also when converted to black-and-white.\n", "\n", "More info: https://bids.github.io/colormap/" ] }, { "cell_type": "code", "execution_count": 1, "id": "unknown-parker", "metadata": { "execution": { "iopub.execute_input": "2025-12-03T16:04:40.421649Z", "iopub.status.busy": "2025-12-03T16:04:40.419857Z", "iopub.status.idle": "2025-12-03T16:04:43.037891Z", "shell.execute_reply": "2025-12-03T16:04:43.037494Z" } }, "outputs": [ { "data": { "text/html": [ "
\n", " " ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ " " ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ " \n", " " ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ " \n", " " ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "%useLatestDescriptors\n", "%use dataframe\n", "%use lets-plot" ] }, { "cell_type": "code", "execution_count": 2, "id": "committed-longitude", "metadata": { "execution": { "iopub.execute_input": "2025-12-03T16:04:43.040283Z", "iopub.status.busy": "2025-12-03T16:04:43.039914Z", "iopub.status.idle": "2025-12-03T16:04:43.068018Z", "shell.execute_reply": "2025-12-03T16:04:43.067301Z" } }, "outputs": [ { "data": { "text/plain": [ "Lets-Plot Kotlin API v.4.12.0. Frontend: Notebook with dynamically loaded JS. Lets-Plot JS v.4.8.1.\n", "Outputs: Web (HTML+JS), Kotlin Notebook (Swing), Static SVG (hidden)" ] }, "execution_count": 2, "metadata": {}, "output_type": "execute_result" } ], "source": [ "LetsPlot.getInfo()" ] }, { "cell_type": "code", "execution_count": 3, "id": "reliable-rates", "metadata": { "execution": { "iopub.execute_input": "2025-12-03T16:04:43.070218Z", "iopub.status.busy": "2025-12-03T16:04:43.069694Z", "iopub.status.idle": "2025-12-03T16:04:43.810760Z", "shell.execute_reply": "2025-12-03T16:04:43.810299Z" } }, "outputs": [ { "data": { "application/kotlindataframe+json": "{\"nrow\":3,\"ncol\":9,\"columns\":[\"miles per gallon\",\"number of cylinders\",\"engine displacement (cu. inches)\",\"engine horsepower\",\"vehicle weight (lbs.)\",\"time to accelerate (sec.)\",\"model year\",\"origin of car\",\"vehicle name\"],\"is_formatted\":false,\"kotlin_dataframe\":[{\"miles per gallon\":18.0,\"number of cylinders\":8,\"engine displacement (cu. inches)\":307.0,\"engine horsepower\":130,\"vehicle weight (lbs.)\":3504,\"time to accelerate (sec.)\":12.0,\"model year\":70,\"origin of car\":\"US\",\"vehicle name\":\"chevrolet chevelle malibu\"},{\"miles per gallon\":15.0,\"number of cylinders\":8,\"engine displacement (cu. inches)\":350.0,\"engine horsepower\":165,\"vehicle weight (lbs.)\":3693,\"time to accelerate (sec.)\":11.5,\"model year\":70,\"origin of car\":\"US\",\"vehicle name\":\"buick skylark 320\"},{\"miles per gallon\":18.0,\"number of cylinders\":8,\"engine displacement (cu. inches)\":318.0,\"engine horsepower\":150,\"vehicle weight (lbs.)\":3436,\"time to accelerate (sec.)\":11.0,\"model year\":70,\"origin of car\":\"US\",\"vehicle name\":\"plymouth satellite\"}]}", "text/html": [ " \n", " \n", " \n", " \n", " \n", "DataFrame: rowsCount = 3, columnsCount = 9
\n", "| miles per gallon | number of cylinders | engine displacement (cu. inches) | engine horsepower | vehicle weight (lbs.) | time to accelerate (sec.) | model year | origin of car | vehicle name |
|---|---|---|---|---|---|---|---|---|
| 18.000000 | 8 | 307.000000 | 130 | 3504 | 12.000000 | 70 | US | chevrolet chevelle malibu |
| 15.000000 | 8 | 350.000000 | 165 | 3693 | 11.500000 | 70 | US | buick skylark 320 |
| 18.000000 | 8 | 318.000000 | 150 | 3436 | 11.000000 | 70 | US | plymouth satellite |