boris-behav-obs 8.9.16__py3-none-any.whl → 9.7.6__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of boris-behav-obs might be problematic. Click here for more details.
- boris/__init__.py +1 -1
- boris/__main__.py +1 -1
- boris/about.py +36 -39
- boris/add_modifier.py +122 -109
- boris/add_modifier_ui.py +239 -135
- boris/advanced_event_filtering.py +81 -45
- boris/analysis_plugins/__init__.py +0 -0
- boris/analysis_plugins/_latency.py +59 -0
- boris/analysis_plugins/irr_cohen_kappa.py +109 -0
- boris/analysis_plugins/irr_cohen_kappa_with_modifiers.py +112 -0
- boris/analysis_plugins/irr_weighted_cohen_kappa.py +157 -0
- boris/analysis_plugins/irr_weighted_cohen_kappa_with_modifiers.py +162 -0
- boris/analysis_plugins/list_of_dataframe_columns.py +22 -0
- boris/analysis_plugins/number_of_occurences.py +22 -0
- boris/analysis_plugins/number_of_occurences_by_independent_variable.py +54 -0
- boris/analysis_plugins/time_budget.py +61 -0
- boris/behav_coding_map_creator.py +228 -229
- boris/behavior_binary_table.py +33 -50
- boris/behaviors_coding_map.py +17 -18
- boris/boris_cli.py +6 -25
- boris/cmd_arguments.py +12 -1
- boris/coding_pad.py +42 -49
- boris/config.py +161 -77
- boris/config_file.py +63 -83
- boris/connections.py +112 -57
- boris/converters.py +13 -37
- boris/converters_ui.py +187 -110
- boris/cooccurence.py +250 -0
- boris/core.py +2511 -1824
- boris/core_qrc.py +15895 -10185
- boris/core_ui.py +946 -792
- boris/db_functions.py +21 -41
- boris/dev.py +134 -0
- boris/dialog.py +505 -244
- boris/duration_widget.py +15 -20
- boris/edit_event.py +84 -28
- boris/edit_event_ui.py +214 -78
- boris/event_operations.py +517 -415
- boris/events_cursor.py +25 -17
- boris/events_snapshots.py +36 -82
- boris/exclusion_matrix.py +4 -9
- boris/export_events.py +213 -583
- boris/export_observation.py +98 -611
- boris/external_processes.py +156 -97
- boris/geometric_measurement.py +652 -287
- boris/gui_utilities.py +91 -14
- boris/image_overlay.py +9 -9
- boris/import_observations.py +190 -98
- boris/ipc_mpv.py +325 -0
- boris/irr.py +26 -63
- boris/latency.py +34 -25
- boris/measurement_widget.py +14 -18
- boris/media_file.py +52 -84
- boris/menu_options.py +17 -6
- boris/modifier_coding_map_creator.py +1013 -0
- boris/modifiers_coding_map.py +7 -9
- boris/mpv.py +1 -0
- boris/mpv2.py +732 -705
- boris/observation.py +655 -310
- boris/observation_operations.py +1036 -404
- boris/observation_ui.py +584 -356
- boris/observations_list.py +71 -53
- boris/otx_parser.py +74 -80
- boris/param_panel.py +31 -16
- boris/param_panel_ui.py +254 -138
- boris/player_dock_widget.py +90 -60
- boris/plot_data_module.py +43 -46
- boris/plot_events.py +127 -90
- boris/plot_events_rt.py +17 -31
- boris/plot_spectrogram_rt.py +95 -30
- boris/plot_waveform_rt.py +32 -21
- boris/plugins.py +431 -0
- boris/portion/__init__.py +18 -8
- boris/portion/const.py +35 -18
- boris/portion/dict.py +5 -5
- boris/portion/func.py +2 -2
- boris/portion/interval.py +21 -41
- boris/portion/io.py +41 -32
- boris/preferences.py +306 -83
- boris/preferences_ui.py +685 -228
- boris/project.py +448 -293
- boris/project_functions.py +689 -254
- boris/project_import_export.py +213 -222
- boris/project_ui.py +674 -438
- boris/qrc_boris.py +6 -3
- boris/qrc_boris5.py +6 -3
- boris/select_modifiers.py +74 -48
- boris/select_observations.py +20 -199
- boris/select_subj_behav.py +67 -39
- boris/state_events.py +53 -37
- boris/subjects_pad.py +6 -9
- boris/synthetic_time_budget.py +45 -28
- boris/time_budget_functions.py +171 -171
- boris/time_budget_widget.py +84 -114
- boris/transitions.py +41 -47
- boris/utilities.py +766 -266
- boris/version.py +3 -3
- boris/video_equalizer.py +16 -14
- boris/video_equalizer_ui.py +199 -130
- boris/video_operations.py +125 -28
- boris/view_df.py +104 -0
- boris/view_df_ui.py +75 -0
- boris/write_event.py +538 -0
- boris_behav_obs-9.7.6.dist-info/METADATA +139 -0
- boris_behav_obs-9.7.6.dist-info/RECORD +109 -0
- {boris_behav_obs-8.9.16.dist-info → boris_behav_obs-9.7.6.dist-info}/WHEEL +1 -1
- boris_behav_obs-9.7.6.dist-info/entry_points.txt +2 -0
- boris/README.TXT +0 -22
- boris/add_modifier.ui +0 -323
- boris/boris_ui.py +0 -886
- boris/converters.ui +0 -289
- boris/core.qrc +0 -35
- boris/core.ui +0 -1543
- boris/edit_event.ui +0 -175
- boris/icons/logo_eye.ico +0 -0
- boris/map_creator.py +0 -850
- boris/observation.ui +0 -773
- boris/param_panel.ui +0 -379
- boris/preferences.ui +0 -537
- boris/project.ui +0 -1069
- boris/project_server.py +0 -236
- boris/vlc.py +0 -10343
- boris/vlc_local.py +0 -90
- boris_behav_obs-8.9.16.dist-info/LICENSE.TXT +0 -674
- boris_behav_obs-8.9.16.dist-info/METADATA +0 -129
- boris_behav_obs-8.9.16.dist-info/RECORD +0 -108
- boris_behav_obs-8.9.16.dist-info/entry_points.txt +0 -2
- {boris → boris_behav_obs-9.7.6.dist-info/licenses}/LICENSE.TXT +0 -0
- {boris_behav_obs-8.9.16.dist-info → boris_behav_obs-9.7.6.dist-info}/top_level.txt +0 -0
boris/converters.ui
DELETED
|
@@ -1,289 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<ui version="4.0">
|
|
3
|
-
<class>converters</class>
|
|
4
|
-
<widget class="QWidget" name="converters">
|
|
5
|
-
<property name="geometry">
|
|
6
|
-
<rect>
|
|
7
|
-
<x>0</x>
|
|
8
|
-
<y>0</y>
|
|
9
|
-
<width>1029</width>
|
|
10
|
-
<height>530</height>
|
|
11
|
-
</rect>
|
|
12
|
-
</property>
|
|
13
|
-
<property name="windowTitle">
|
|
14
|
-
<string>Time converters</string>
|
|
15
|
-
</property>
|
|
16
|
-
<layout class="QVBoxLayout" name="verticalLayout">
|
|
17
|
-
<item>
|
|
18
|
-
<widget class="QLabel" name="label_4">
|
|
19
|
-
<property name="text">
|
|
20
|
-
<string>Converters</string>
|
|
21
|
-
</property>
|
|
22
|
-
</widget>
|
|
23
|
-
</item>
|
|
24
|
-
<item>
|
|
25
|
-
<widget class="QTableWidget" name="tw_converters">
|
|
26
|
-
<property name="editTriggers">
|
|
27
|
-
<set>QAbstractItemView::NoEditTriggers</set>
|
|
28
|
-
</property>
|
|
29
|
-
<property name="selectionMode">
|
|
30
|
-
<enum>QAbstractItemView::SingleSelection</enum>
|
|
31
|
-
</property>
|
|
32
|
-
<property name="selectionBehavior">
|
|
33
|
-
<enum>QAbstractItemView::SelectRows</enum>
|
|
34
|
-
</property>
|
|
35
|
-
<property name="sortingEnabled">
|
|
36
|
-
<bool>true</bool>
|
|
37
|
-
</property>
|
|
38
|
-
<column>
|
|
39
|
-
<property name="text">
|
|
40
|
-
<string>Name</string>
|
|
41
|
-
</property>
|
|
42
|
-
</column>
|
|
43
|
-
<column>
|
|
44
|
-
<property name="text">
|
|
45
|
-
<string>Description</string>
|
|
46
|
-
</property>
|
|
47
|
-
</column>
|
|
48
|
-
<column>
|
|
49
|
-
<property name="text">
|
|
50
|
-
<string>Code</string>
|
|
51
|
-
</property>
|
|
52
|
-
</column>
|
|
53
|
-
</widget>
|
|
54
|
-
</item>
|
|
55
|
-
<item>
|
|
56
|
-
<layout class="QHBoxLayout" name="horizontalLayout">
|
|
57
|
-
<item>
|
|
58
|
-
<widget class="QPushButton" name="pb_add_converter">
|
|
59
|
-
<property name="text">
|
|
60
|
-
<string>Add new converter</string>
|
|
61
|
-
</property>
|
|
62
|
-
</widget>
|
|
63
|
-
</item>
|
|
64
|
-
<item>
|
|
65
|
-
<widget class="QPushButton" name="pb_modify_converter">
|
|
66
|
-
<property name="text">
|
|
67
|
-
<string>Modify converter</string>
|
|
68
|
-
</property>
|
|
69
|
-
</widget>
|
|
70
|
-
</item>
|
|
71
|
-
<item>
|
|
72
|
-
<widget class="QPushButton" name="pb_delete_converter">
|
|
73
|
-
<property name="text">
|
|
74
|
-
<string>Delete converter</string>
|
|
75
|
-
</property>
|
|
76
|
-
</widget>
|
|
77
|
-
</item>
|
|
78
|
-
<item>
|
|
79
|
-
<widget class="QPushButton" name="pb_load_from_file">
|
|
80
|
-
<property name="text">
|
|
81
|
-
<string>Load converters from file</string>
|
|
82
|
-
</property>
|
|
83
|
-
</widget>
|
|
84
|
-
</item>
|
|
85
|
-
<item>
|
|
86
|
-
<widget class="QPushButton" name="pb_load_from_repo">
|
|
87
|
-
<property name="text">
|
|
88
|
-
<string>Load converters from BORIS repository</string>
|
|
89
|
-
</property>
|
|
90
|
-
</widget>
|
|
91
|
-
</item>
|
|
92
|
-
<item>
|
|
93
|
-
<spacer name="horizontalSpacer">
|
|
94
|
-
<property name="orientation">
|
|
95
|
-
<enum>Qt::Horizontal</enum>
|
|
96
|
-
</property>
|
|
97
|
-
<property name="sizeHint" stdset="0">
|
|
98
|
-
<size>
|
|
99
|
-
<width>40</width>
|
|
100
|
-
<height>20</height>
|
|
101
|
-
</size>
|
|
102
|
-
</property>
|
|
103
|
-
</spacer>
|
|
104
|
-
</item>
|
|
105
|
-
</layout>
|
|
106
|
-
</item>
|
|
107
|
-
<item>
|
|
108
|
-
<layout class="QHBoxLayout" name="horizontalLayout_3">
|
|
109
|
-
<item>
|
|
110
|
-
<widget class="QLabel" name="label_2">
|
|
111
|
-
<property name="minimumSize">
|
|
112
|
-
<size>
|
|
113
|
-
<width>120</width>
|
|
114
|
-
<height>0</height>
|
|
115
|
-
</size>
|
|
116
|
-
</property>
|
|
117
|
-
<property name="text">
|
|
118
|
-
<string>Name</string>
|
|
119
|
-
</property>
|
|
120
|
-
</widget>
|
|
121
|
-
</item>
|
|
122
|
-
<item>
|
|
123
|
-
<widget class="QLineEdit" name="le_converter_name"/>
|
|
124
|
-
</item>
|
|
125
|
-
<item>
|
|
126
|
-
<spacer name="horizontalSpacer_3">
|
|
127
|
-
<property name="orientation">
|
|
128
|
-
<enum>Qt::Horizontal</enum>
|
|
129
|
-
</property>
|
|
130
|
-
<property name="sizeType">
|
|
131
|
-
<enum>QSizePolicy::Minimum</enum>
|
|
132
|
-
</property>
|
|
133
|
-
<property name="sizeHint" stdset="0">
|
|
134
|
-
<size>
|
|
135
|
-
<width>10</width>
|
|
136
|
-
<height>20</height>
|
|
137
|
-
</size>
|
|
138
|
-
</property>
|
|
139
|
-
</spacer>
|
|
140
|
-
</item>
|
|
141
|
-
</layout>
|
|
142
|
-
</item>
|
|
143
|
-
<item>
|
|
144
|
-
<layout class="QHBoxLayout" name="horizontalLayout_5">
|
|
145
|
-
<item>
|
|
146
|
-
<widget class="QLabel" name="label_3">
|
|
147
|
-
<property name="minimumSize">
|
|
148
|
-
<size>
|
|
149
|
-
<width>120</width>
|
|
150
|
-
<height>0</height>
|
|
151
|
-
</size>
|
|
152
|
-
</property>
|
|
153
|
-
<property name="text">
|
|
154
|
-
<string>Description</string>
|
|
155
|
-
</property>
|
|
156
|
-
</widget>
|
|
157
|
-
</item>
|
|
158
|
-
<item>
|
|
159
|
-
<widget class="QLineEdit" name="le_converter_description"/>
|
|
160
|
-
</item>
|
|
161
|
-
<item>
|
|
162
|
-
<spacer name="horizontalSpacer_4">
|
|
163
|
-
<property name="orientation">
|
|
164
|
-
<enum>Qt::Horizontal</enum>
|
|
165
|
-
</property>
|
|
166
|
-
<property name="sizeType">
|
|
167
|
-
<enum>QSizePolicy::Minimum</enum>
|
|
168
|
-
</property>
|
|
169
|
-
<property name="sizeHint" stdset="0">
|
|
170
|
-
<size>
|
|
171
|
-
<width>10</width>
|
|
172
|
-
<height>20</height>
|
|
173
|
-
</size>
|
|
174
|
-
</property>
|
|
175
|
-
</spacer>
|
|
176
|
-
</item>
|
|
177
|
-
</layout>
|
|
178
|
-
</item>
|
|
179
|
-
<item>
|
|
180
|
-
<layout class="QHBoxLayout" name="horizontalLayout_2">
|
|
181
|
-
<item>
|
|
182
|
-
<layout class="QVBoxLayout" name="verticalLayout_3">
|
|
183
|
-
<item>
|
|
184
|
-
<widget class="QLabel" name="label">
|
|
185
|
-
<property name="text">
|
|
186
|
-
<string>Python code</string>
|
|
187
|
-
</property>
|
|
188
|
-
</widget>
|
|
189
|
-
</item>
|
|
190
|
-
<item>
|
|
191
|
-
<widget class="QPushButton" name="pb_code_help">
|
|
192
|
-
<property name="text">
|
|
193
|
-
<string>Help</string>
|
|
194
|
-
</property>
|
|
195
|
-
</widget>
|
|
196
|
-
</item>
|
|
197
|
-
<item>
|
|
198
|
-
<spacer name="verticalSpacer_2">
|
|
199
|
-
<property name="orientation">
|
|
200
|
-
<enum>Qt::Vertical</enum>
|
|
201
|
-
</property>
|
|
202
|
-
<property name="sizeHint" stdset="0">
|
|
203
|
-
<size>
|
|
204
|
-
<width>20</width>
|
|
205
|
-
<height>40</height>
|
|
206
|
-
</size>
|
|
207
|
-
</property>
|
|
208
|
-
</spacer>
|
|
209
|
-
</item>
|
|
210
|
-
</layout>
|
|
211
|
-
</item>
|
|
212
|
-
<item>
|
|
213
|
-
<widget class="QPlainTextEdit" name="pteCode">
|
|
214
|
-
<property name="font">
|
|
215
|
-
<font>
|
|
216
|
-
<family>Monospace</family>
|
|
217
|
-
</font>
|
|
218
|
-
</property>
|
|
219
|
-
</widget>
|
|
220
|
-
</item>
|
|
221
|
-
<item>
|
|
222
|
-
<layout class="QVBoxLayout" name="verticalLayout_2">
|
|
223
|
-
<item>
|
|
224
|
-
<widget class="QPushButton" name="pb_save_converter">
|
|
225
|
-
<property name="text">
|
|
226
|
-
<string>Save converter</string>
|
|
227
|
-
</property>
|
|
228
|
-
</widget>
|
|
229
|
-
</item>
|
|
230
|
-
<item>
|
|
231
|
-
<widget class="QPushButton" name="pb_cancel_converter">
|
|
232
|
-
<property name="text">
|
|
233
|
-
<string>Cancel</string>
|
|
234
|
-
</property>
|
|
235
|
-
</widget>
|
|
236
|
-
</item>
|
|
237
|
-
<item>
|
|
238
|
-
<spacer name="verticalSpacer">
|
|
239
|
-
<property name="orientation">
|
|
240
|
-
<enum>Qt::Vertical</enum>
|
|
241
|
-
</property>
|
|
242
|
-
<property name="sizeHint" stdset="0">
|
|
243
|
-
<size>
|
|
244
|
-
<width>20</width>
|
|
245
|
-
<height>40</height>
|
|
246
|
-
</size>
|
|
247
|
-
</property>
|
|
248
|
-
</spacer>
|
|
249
|
-
</item>
|
|
250
|
-
</layout>
|
|
251
|
-
</item>
|
|
252
|
-
</layout>
|
|
253
|
-
</item>
|
|
254
|
-
<item>
|
|
255
|
-
<layout class="QHBoxLayout" name="horizontalLayout_4">
|
|
256
|
-
<item>
|
|
257
|
-
<spacer name="horizontalSpacer_2">
|
|
258
|
-
<property name="orientation">
|
|
259
|
-
<enum>Qt::Horizontal</enum>
|
|
260
|
-
</property>
|
|
261
|
-
<property name="sizeHint" stdset="0">
|
|
262
|
-
<size>
|
|
263
|
-
<width>40</width>
|
|
264
|
-
<height>20</height>
|
|
265
|
-
</size>
|
|
266
|
-
</property>
|
|
267
|
-
</spacer>
|
|
268
|
-
</item>
|
|
269
|
-
<item>
|
|
270
|
-
<widget class="QPushButton" name="pb_cancel_widget">
|
|
271
|
-
<property name="text">
|
|
272
|
-
<string>Cancel</string>
|
|
273
|
-
</property>
|
|
274
|
-
</widget>
|
|
275
|
-
</item>
|
|
276
|
-
<item>
|
|
277
|
-
<widget class="QPushButton" name="pbOK">
|
|
278
|
-
<property name="text">
|
|
279
|
-
<string>OK</string>
|
|
280
|
-
</property>
|
|
281
|
-
</widget>
|
|
282
|
-
</item>
|
|
283
|
-
</layout>
|
|
284
|
-
</item>
|
|
285
|
-
</layout>
|
|
286
|
-
</widget>
|
|
287
|
-
<resources/>
|
|
288
|
-
<connections/>
|
|
289
|
-
</ui>
|
boris/core.qrc
DELETED
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
<!DOCTYPE RCC><RCC version="1.0">
|
|
2
|
-
<qresource>
|
|
3
|
-
<file alias="small_logo">icons/logo_eye.128px.png</file>
|
|
4
|
-
<file alias="logo">icons/logo_boris.png</file>
|
|
5
|
-
<file alias="boris_unito">icons/boris_unito.png</file>
|
|
6
|
-
<file alias="dbios_unito">icons/dbios_unito.png</file>
|
|
7
|
-
<file alias="splash">icons/splash.jpg</file>
|
|
8
|
-
<file alias="observations_list">icons/glyphicons_157_show_thumbnails_with_lines.png</file>
|
|
9
|
-
<file alias="play">icons/glyphicons_173_play.png</file>
|
|
10
|
-
<file alias="pause">icons/glyphicons_174_pause.png</file>
|
|
11
|
-
<file alias="reset">icons/glyphicons_170_step_backward.png</file>
|
|
12
|
-
<file alias="jump_backward">icons/glyphicons_172_rewind.png</file>
|
|
13
|
-
<file alias="jump_forward">icons/glyphicons_176_forward.png</file>
|
|
14
|
-
<file alias="faster">icons/glyphicons_190_circle_plus.png</file>
|
|
15
|
-
<file alias="slower">icons/glyphicons_191_circle_minus.png</file>
|
|
16
|
-
<file alias="previous">icons/glyphicons_171_fast_backward.png</file>
|
|
17
|
-
<file alias="next">icons/glyphicons_177_fast_forward.png</file>
|
|
18
|
-
<file alias="normal_speed">icons/glyphicons_192_circle_egal.png</file>
|
|
19
|
-
<file alias="snapshot">icons/glyphicons_011_camera.png</file>
|
|
20
|
-
<file alias="frame_mode">icons/glyphicons_008_film.png</file>
|
|
21
|
-
<file alias="frame_backward">icons/glyphicons_210_left_arrow.png</file>
|
|
22
|
-
<file alias="frame_forward">icons/glyphicons_211_right_arrow.png</file>
|
|
23
|
-
<file alias="time_budget">icons/glyphicons_119_table.png</file>
|
|
24
|
-
<file alias="close_observation">icons/glyphicons_207_remove_2.png</file>
|
|
25
|
-
<file alias="plot_events">icons/glyphicons_108_left_indent_modified.png</file>
|
|
26
|
-
<file alias="find">icons/glyphicons_027_search.png</file>
|
|
27
|
-
<file alias="export">icons/glyphicons_359_file_export.png</file>
|
|
28
|
-
<file alias="explore">icons/glyphicons_025_binoculars.png</file>
|
|
29
|
-
<file alias="plot_time_budget">icons/glyphicons_041_charts.png</file>
|
|
30
|
-
<file alias="filter">icons/glyphicons_320_filter.png</file>
|
|
31
|
-
<file alias="preferences">icons/glyphicons_136_cogwheel.png</file>
|
|
32
|
-
<file alias="beep">sounds/beep.wav</file>
|
|
33
|
-
<file alias="key_sound">sounds/key_sound.wav</file>
|
|
34
|
-
</qresource>
|
|
35
|
-
</RCC>
|