From 3eb91bc5fb7332787cdea05b305aab29695a130f Mon Sep 17 00:00:00 2001 From: Peter McGoron Date: Mon, 16 Sep 2024 10:12:23 -0400 Subject: [PATCH] rename --- README.rst | 6 +++--- dynamicseries.py => incrementalgraph.py | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) rename dynamicseries.py => incrementalgraph.py (99%) diff --git a/README.rst b/README.rst index e888579..f1dddf6 100644 --- a/README.rst +++ b/README.rst @@ -1,5 +1,5 @@ -============= -DynamicSeries -============= +================ +IncrementalGraph +================ A class to plot a time series measured from an instrument. diff --git a/dynamicseries.py b/incrementalgraph.py similarity index 99% rename from dynamicseries.py rename to incrementalgraph.py index 4f18bff..bd102f3 100644 --- a/dynamicseries.py +++ b/incrementalgraph.py @@ -4,7 +4,7 @@ import matplotlib.pyplot as plt -class DynamicSeries: +class IncrementalGraph: def __init__(self, fig, ax, x_lim = [0,10], y_lim = [0,10]): self.fig = fig self.ax = ax