This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Slopegraphs in matplotlib | |
# Trey Causey (@treycausey) | |
# Problems arise when equal values occur | |
# within the same time unit | |
import matplotlib.pyplot as plt | |
import numpy as np | |
import pandas as pd | |
units = ['A', 'B', 'C', 'D'] |