{ "cells": [ { "cell_type": "markdown", "id": "96f79485-6673-4211-b349-85c6ae06db88", "metadata": {}, "source": [ "# Data Visualization" ] }, { "cell_type": "markdown", "id": "48b641c3-56db-49bf-b4e0-af1cad3fe8c4", "metadata": {}, "source": [ "Visualizing data can be helpful on many occasions, such as investigating the data and its distribution, checking for outliers, evaluating results and more.\n", "\n", "Here we visualize some experimental data in different plots and provide some code for the most common plot types used.\n", "\n", "The `matplotlib` library provides a great starting point for learning how to visualize data in Python, you can find many more plot types [here](https://matplotlib.org/stable/plot_types/index.html)." ] }, { "cell_type": "code", "execution_count": 1, "id": "007e0292-8c5a-4958-8caa-64765bbd6fbe", "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", " | flow type | \n", "water flow / air flow | \n", "0 kg/h | \n", "100 kg/h | \n", "200 kg/h | \n", "300 kg/h | \n", "
---|---|---|---|---|---|---|
0 | \n", "small | \n", "15 | \n", "1 | \n", "2 | \n", "3 | \n", "3 | \n", "
1 | \n", "small | \n", "30 | \n", "2 | \n", "2 | \n", "5 | \n", "3 | \n", "
2 | \n", "small | \n", "50 | \n", "2 | \n", "3 | \n", "6 | \n", "5 | \n", "
3 | \n", "small | \n", "80 | \n", "3 | \n", "4 | \n", "9 | \n", "9 | \n", "
4 | \n", "small | \n", "100 | \n", "3 | \n", "5 | \n", "13 | \n", "13 | \n", "