Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Forward Sampling Workshop Slides #1895

Merged
merged 3 commits into from
Jul 22, 2022
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified doc/workshop/ARMA/ARMA.pptx
Binary file not shown.
32 changes: 32 additions & 0 deletions doc/workshop/ARMA/inputs/plot_synth.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
#!/usr/bin/env python
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please add raven copyright info

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fixed


import sys
import os
import matplotlib.pyplot as plt
import pandas as pd

def main():
try:
synth_fp = os.path.abspath(sys.argv[1])
real_fp = os.path.abspath(os.path.join(os.path.dirname(synth_fp), "dataSet_0.csv"))
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If possible, I suggest to use camelBack for the variables.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fixed

except IndexError:
print("ERROR: Filepath to synthetic data not provided")


synth = pd.read_csv(synth_fp)
real = pd.read_csv(real_fp)

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()

output_fp = os.path.join(os.path.dirname(real_fp), "results.png")
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

same comments here as before.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fixed

plt.savefig(output_fp)


if __name__ == '__main__':
main()
Binary file modified doc/workshop/forwardSampling/ForwardSampling.pptx
Binary file not shown.
Binary file modified doc/workshop/forwardSampling/TimeDepSampling.pptx
Binary file not shown.