{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# gantt charts" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "This section describes various options available for gantt charts in **fivecentplots**" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "See the full API https://endangeredoxen.github.io/fivecentplots/0.5.0/api/gantt.html#gantt" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Setup" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Import packages:" ] }, { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [], "source": [ "import fivecentplots as fcp\n", "import pandas as pd\n", "from pathlib import Path" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Read some made-up Gantt chart data for the recording schedule of one of the greatest albums of one of the greatest bands:" ] }, { "cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", " | Task | \n", "Assigned | \n", "Start | \n", "Stop | \n", "Category | \n", "
---|---|---|---|---|---|
0 | \n", "Record drums | \n", "Taylor | \n", "2010-09-01 | \n", "2010-09-05 | \n", "Recording | \n", "
1 | \n", "Record bass | \n", "Nate | \n", "2010-09-04 | \n", "2010-09-06 | \n", "Recording | \n", "
2 | \n", "Record rhythm guitar | \n", "Pat | \n", "2010-09-06 | \n", "2010-09-08 | \n", "Recording | \n", "
3 | \n", "Record rhythm guitar | \n", "Dave | \n", "2010-09-06 | \n", "2010-09-08 | \n", "Recording | \n", "
4 | \n", "Record lead guitar | \n", "Chris | \n", "2010-09-07 | \n", "2010-09-09 | \n", "Recording | \n", "