You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Now the user should navigate into the Python-DSS-Analysis working directory (where the pyproject.toml file is located) to install the dependencies
32
36
33
-
.. code-block::
37
+
.. code-block:: python
38
+
34
39
pip install .
35
40
36
41
This should install numpy and pyyaml as the two dependencies the project requires.
@@ -42,14 +47,17 @@ Running Examples
42
47
Included with the repository, is sample data, a sampleRun.py file which can be called from the command line, and two sample model files. Both models fit the sample data, one with a quadratic fit, the other with an exponential.
43
48
44
49
Users can quickly run the two example problems by switching their directory to the working directory (where sampleRun.py is located). Running sampleRun.py from the command line takes 3 flags:
50
+
45
51
1. -m the model file, this is the .yml files which should be structured as the sample files provided
46
52
2. -d the data file, This is time demarked data of a single parameter of interest the first column must be time, the second column is the parameter of interest. Upon reading the file. the sampleRun skips the first line assuming titles of the data.
47
53
3. -o This is the output file name, it will be created in the same directory at which the sampleRun.py file is invoked.
This will create a quadraticOutput.csv file with all the DSS parameters calculated, the users can run the sampledata again with the exponential fit very similarly
0 commit comments