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

Gui #22

Open
wants to merge 11 commits into
base: master
Choose a base branch
from
Open

Gui #22

Show file tree
Hide file tree
Changes from 1 commit
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
683 changes: 683 additions & 0 deletions data-processing-gui/DataGui.py

Large diffs are not rendered by default.

Binary file not shown.
Binary file not shown.
Binary file not shown.
270 changes: 270 additions & 0 deletions data-processing-gui/data/coldflow1.2_2020-11-14__19_18.csv

Large diffs are not rendered by default.

376 changes: 376 additions & 0 deletions data-processing-gui/data/coldflow1_2020-11-14__19_16.csv

Large diffs are not rendered by default.

2,150 changes: 2,150 additions & 0 deletions data-processing-gui/data/coldflow1_fill2_2020-11-14__18_26.csv

Large diffs are not rendered by default.

1,167 changes: 1,167 additions & 0 deletions data-processing-gui/data/coldflow1_fill_2020-11-14__17_51.csv

Large diffs are not rendered by default.

2,549 changes: 2,549 additions & 0 deletions data-processing-gui/data/coldflow1_fill_2020-11-14__17_59.csv

Large diffs are not rendered by default.

356 changes: 356 additions & 0 deletions data-processing-gui/data/coldflow2_2020-11-14__19_56.csv

Large diffs are not rendered by default.

1,626 changes: 1,626 additions & 0 deletions data-processing-gui/data/coldflow2_fill_2020-11-14__19_44.csv

Large diffs are not rendered by default.

600 changes: 600 additions & 0 deletions data-processing-gui/dataanalysis.ui

Large diffs are not rendered by default.

30 changes: 30 additions & 0 deletions data-processing-gui/mplwidget.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
from PyQt5.QtWidgets import *
from matplotlib.backends.backend_qt5agg import FigureCanvas
from matplotlib.figure import Figure
import sys
import random
from PyQt5 import QtCore, QtWidgets, QtGui
from PyQt5.QtCore import *
from PyQt5.QtGui import *
from PyQt5.QtWidgets import *
from PyQt5.uic import loadUi
import scipy as sci
import numpy as np
import ntpath
import matplotlib.pyplot as plt
import pandas as pd
from time import sleep
import os
from numpy.fft import rfft, irfft
from scipy import signal
from scipy.signal import savgol_filter, lfilter
from statistics import mean

class MplWidget(QWidget):
def __init__(self,parent=QWidget):
QWidget.__init__(self, parent)
self.canvas = FigureCanvas(Figure() )
vertical_layout = QVBoxLayout()
vertical_layout.addWidget(self.canvas)
self.canvas.axes = self.canvas.figure.add_subplot(111)
self.setLayout(vertical_layout)
Loading