Skip to content

Instantly share code, notes, and snippets.

View paulfurber's full-sized avatar

Paul Furber paulfurber

View GitHub Profile
# -*- coding: utf-8 -*-
import os
import arrow
import google_auth_oauthlib.flow
import googleapiclient.discovery
import googleapiclient.errors
from pprint import pprint
import matplotlib
matplotlib.use("TkAgg")
import matplotlib.pyplot as plt
import numpy as np
x = np.arange(0, 10, 0.1)
# y = x
# y = np.exp(x)
y = x * x
import matplotlib
matplotlib.use("TkAgg")
import matplotlib.pyplot as plt
import numpy as np
x = np.arange(0, 10, 0.1)
y = x*x
plt.yscale(value="log")
plt.plot(x,y)