-
Notifications
You must be signed in to change notification settings - Fork 133
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
Changes from 2 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
#!/usr/bin/env python | ||
|
||
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")) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. If possible, I suggest to use camelBack for the variables. There was a problem hiding this comment. Choose a reason for hiding this commentThe 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") | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. same comments here as before. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Fixed |
||
plt.savefig(output_fp) | ||
|
||
|
||
if __name__ == '__main__': | ||
main() |
There was a problem hiding this comment.
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
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed