24 lines
443 B
Python
24 lines
443 B
Python
import sys
|
|
|
|
from PyQt5.QtWidgets import QApplication
|
|
|
|
import numpy as np
|
|
|
|
from . import PlotterDialog
|
|
|
|
|
|
def main():
|
|
app = QApplication(sys.argv)
|
|
|
|
variables = [chr(ord("a") + i) for i in range(10)]
|
|
|
|
dlg = PlotterDialog(
|
|
variable_values={key: np.sort(np.random.random(10)) * 10 for key in variables},
|
|
variable_full_names={key: key.upper() for key in variables},
|
|
)
|
|
dlg.show()
|
|
|
|
sys.exit(app.exec())
|
|
|
|
main()
|