mirror of
https://github.com/logos-co/SimulationsFramework.git
synced 2025-02-18 17:06:43 +00:00
Creating plotter functionality
This commit is contained in:
parent
029e418260
commit
003621af6b
24
Plotter/run_plotter.py
Normal file
24
Plotter/run_plotter.py
Normal file
@ -0,0 +1,24 @@
|
||||
# Python Imports
|
||||
import typer
|
||||
|
||||
|
||||
def main(
|
||||
input_data: str = typer.Option(..., "--input-data", "-i"),
|
||||
plot_type: str = typer.Option(..., "--plot-type", "-p"),
|
||||
plot_settings: str = typer.Option(..., "--plot-settings", "-s"),
|
||||
):
|
||||
# Parse data file
|
||||
print("")
|
||||
# Accept plot type
|
||||
|
||||
# Handle Plot arguments
|
||||
|
||||
|
||||
'''
|
||||
import foo
|
||||
bar = getattr(foo, 'bar')
|
||||
result = bar()
|
||||
'''
|
||||
|
||||
if __name__ == '__main__':
|
||||
typer.run(main)
|
6
Plotter/simulation_data.py
Normal file
6
Plotter/simulation_data.py
Normal file
@ -0,0 +1,6 @@
|
||||
|
||||
|
||||
class SimulationData:
|
||||
|
||||
def __init__(self, dataframe):
|
||||
self._dataframe = dataframe
|
Loading…
x
Reference in New Issue
Block a user