17 lines
414 B
Python
Executable File
17 lines
414 B
Python
Executable File
#! /usr/bin/env python3
|
|
|
|
import pandas as pd
|
|
from matplotlib import pyplot as plt
|
|
from sys import argv
|
|
|
|
plt.rcParams["figure.autolayout"] = True
|
|
df = pd.read_csv(argv[1])
|
|
#df = df.head(n=10000)
|
|
print("Contents in csv file:\n", df)
|
|
#plt.plot(df.index, df.Input)
|
|
#plt.plot(df.index, df.RRCSignal)
|
|
plt.plot(df.index, df.LSFConvolution)
|
|
plt.plot(df.index, df.FrameConvolution)
|
|
plt.plot(df.index, df.Stddev)
|
|
plt.show()
|