This file contains hidden or 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
import numpy as np | |
import seaborn as sns | |
import matplotlib.pyplot as plt | |
sns.set(style="white", context="talk") | |
# Set up the matplotlib figure | |
f, (ax1) = plt.subplots(1, 1, figsize=(10, 6), sharex=True) | |
# Specify data |
This file contains hidden or 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
import jinja2 | |
import json | |
import logging | |
import os | |
import requests | |
import tempfile | |
import pykube.config | |
import pykube.http |
OlderNewer