diff --git a/doc/workshop/ARMA/ARMA.pptx b/doc/workshop/ARMA/ARMA.pptx index ccbcb52386..78779631ce 100644 Binary files a/doc/workshop/ARMA/ARMA.pptx and b/doc/workshop/ARMA/ARMA.pptx differ diff --git a/doc/workshop/ARMA/inputs/plot_synth.py b/doc/workshop/ARMA/inputs/plot_synth.py new file mode 100755 index 0000000000..7c1a345409 --- /dev/null +++ b/doc/workshop/ARMA/inputs/plot_synth.py @@ -0,0 +1,46 @@ +#!/usr/bin/env python +# Copyright 2017 Battelle Energy Alliance, LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +""" +Simple plotting script to create visualizations of ARMA workshop material +""" +import sys +import os +import matplotlib.pyplot as plt +import pandas as pd + +def main(): + try: + synthFilepath = os.path.abspath(sys.argv[1]) + realFilepath = os.path.abspath(os.path.join(os.path.dirname(synthFilepath), "dataSet_0.csv")) + except IndexError: + print("ERROR: Filepath to synthetic data not provided") + + + synth = pd.read_csv(synthFilepath) + real = pd.read_csv(realFilepath) + + fig, ax = plt.subplots() + ax.plot(synth.iloc[:, 0], synth.iloc[:, 1], color="goldenrod", label='Synthetic Signal') + ax.plot(real.iloc[:, 0], real.iloc[:, 1], label='Original Signal') + ax.set_xlabel('Time') + ax.set_ylabel('Value') + ax.legend() + + outputFilepath = os.path.join(os.path.dirname(real_fp), "results.png") + plt.savefig(outputFilepath) + + +if __name__ == '__main__': + main() diff --git a/doc/workshop/forwardSampling/ForwardSampling.pptx b/doc/workshop/forwardSampling/ForwardSampling.pptx index 1fe78bbfaa..92719d8d26 100755 Binary files a/doc/workshop/forwardSampling/ForwardSampling.pptx and b/doc/workshop/forwardSampling/ForwardSampling.pptx differ diff --git a/doc/workshop/forwardSampling/TimeDepSampling.pptx b/doc/workshop/forwardSampling/TimeDepSampling.pptx index 9dc616946b..48f4c5e4c0 100755 Binary files a/doc/workshop/forwardSampling/TimeDepSampling.pptx and b/doc/workshop/forwardSampling/TimeDepSampling.pptx differ