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
Copy file name to clipboardExpand all lines: README.md
+5-2Lines changed: 5 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -84,7 +84,7 @@ source setup.bash
84
84
Generate the parametric model using a log file (ulog or csv):
85
85
86
86
```
87
-
make estimate-model [model=<modeltype>] [config=<config_file_path>] [data_selection=<True/False>] [plot=<True/False>] log=<log_file_path>
87
+
make estimate-model [model=<modeltype>] [config=<config_file_path>] [data_selection=<none|interwactive|auto>] [plot=<True/False>] log=<log_file_path>
88
88
```
89
89
90
90
### Pipeline Arguments
@@ -106,7 +106,10 @@ The Log file contains all data needed for the system identification of the speci
106
106
107
107
#### Data Selection
108
108
109
-
The data_selection argument is optional (per default False) and can be used to visually select subportions of the data, using the [Visual Dataframe Selector](https://github.com/manumerous/visual_dataframe_selector), before running the model estimation. It is also possible to save the selected subportion of data to a csv file in order to use this exact dataset multiple times.
109
+
The data_selection argument is optional (per default none) and can be used to visually select subportions of the data.
110
+
- none(default): Data selection is disabled, and the whole section of the log is used
111
+
- interactive: Data is selected interactively using the [Visual Dataframe Selector](https://github.com/manumerous/visual_dataframe_selector), before running the model estimation. It is also possible to save the selected subportion of data to a csv file in order to use this exact dataset multiple times.
0 commit comments