{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# Styles and formatting" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Any `Element` object in fivecentplots (legend, axis, label, etc.) has certain properties like edge color, fill color, font size that can be styled. Each of the properties can be set by passing the appropriate keyword to the function call to make the plot or by setting a new default value in a custom theme file. Examples of style changes are described below." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Setup" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Imports" ] }, { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [], "source": [ "%load_ext autoreload\n", "%autoreload 2\n", "%matplotlib inline\n", "import fivecentplots as fcp\n", "import pandas as pd\n", "import numpy as np\n", "import os, sys, pdb\n", "osjoin = os.path.join\n", "db = pdb.set_trace" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Sample data" ] }, { "cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", " | Substrate | \n", "Target Wavelength | \n", "Boost Level | \n", "Temperature [C] | \n", "Die | \n", "Voltage | \n", "I Set | \n", "I [A] | \n", "
---|---|---|---|---|---|---|---|---|
0 | \n", "Si | \n", "450 | \n", "0.2 | \n", "25 | \n", "(1,1) | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "
1 | \n", "Si | \n", "450 | \n", "0.2 | \n", "25 | \n", "(1,1) | \n", "0.1 | \n", "0.0 | \n", "0.0 | \n", "
2 | \n", "Si | \n", "450 | \n", "0.2 | \n", "25 | \n", "(1,1) | \n", "0.2 | \n", "0.0 | \n", "0.0 | \n", "
3 | \n", "Si | \n", "450 | \n", "0.2 | \n", "25 | \n", "(1,1) | \n", "0.3 | \n", "0.0 | \n", "0.0 | \n", "
4 | \n", "Si | \n", "450 | \n", "0.2 | \n", "25 | \n", "(1,1) | \n", "0.4 | \n", "0.0 | \n", "0.0 | \n", "