boris-behav-obs 8.16.5__py3-none-any.whl → 9.7.12__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.
- boris/__init__.py +1 -1
- boris/__main__.py +1 -1
- boris/about.py +28 -40
- boris/add_modifier.py +88 -80
- boris/add_modifier_ui.py +266 -144
- boris/advanced_event_filtering.py +23 -29
- boris/analysis_plugins/__init__.py +0 -0
- boris/analysis_plugins/_export_to_feral.py +225 -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 +235 -236
- 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 +19 -36
- boris/config.py +109 -50
- boris/config_file.py +58 -67
- boris/connections.py +105 -58
- boris/converters.py +13 -37
- boris/converters_ui.py +187 -110
- boris/cooccurence.py +250 -0
- boris/core.py +2174 -1303
- boris/core_qrc.py +15892 -10829
- boris/core_ui.py +941 -806
- boris/db_functions.py +17 -42
- boris/dev.py +27 -7
- boris/dialog.py +461 -242
- boris/duration_widget.py +9 -14
- boris/edit_event.py +61 -31
- boris/edit_event_ui.py +208 -97
- boris/event_operations.py +405 -281
- boris/events_cursor.py +25 -17
- boris/events_snapshots.py +36 -82
- boris/exclusion_matrix.py +4 -9
- boris/export_events.py +180 -203
- boris/export_observation.py +60 -73
- boris/external_processes.py +123 -98
- boris/geometric_measurement.py +427 -218
- boris/gui_utilities.py +91 -14
- boris/image_overlay.py +4 -4
- boris/import_observations.py +190 -98
- boris/ipc_mpv.py +325 -0
- boris/irr.py +20 -57
- boris/latency.py +31 -24
- boris/measurement_widget.py +14 -18
- boris/media_file.py +17 -19
- boris/menu_options.py +16 -6
- boris/modifier_coding_map_creator.py +1013 -0
- boris/modifiers_coding_map.py +7 -9
- boris/mpv2.py +128 -35
- boris/observation.py +501 -211
- boris/observation_operations.py +1037 -393
- boris/observation_ui.py +573 -363
- boris/observations_list.py +51 -58
- boris/otx_parser.py +74 -68
- boris/param_panel.py +45 -59
- boris/param_panel_ui.py +254 -138
- boris/player_dock_widget.py +91 -56
- boris/plot_data_module.py +20 -53
- boris/plot_events.py +56 -153
- boris/plot_events_rt.py +16 -30
- boris/plot_spectrogram_rt.py +83 -56
- boris/plot_waveform_rt.py +27 -49
- boris/plugins.py +468 -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 +307 -123
- boris/preferences_ui.py +686 -227
- boris/project.py +294 -271
- boris/project_functions.py +626 -537
- boris/project_import_export.py +204 -213
- boris/project_ui.py +673 -441
- boris/qrc_boris.py +6 -3
- boris/qrc_boris5.py +6 -3
- boris/select_modifiers.py +62 -90
- boris/select_observations.py +19 -197
- boris/select_subj_behav.py +67 -39
- boris/state_events.py +51 -33
- boris/subjects_pad.py +7 -9
- boris/synthetic_time_budget.py +42 -26
- boris/time_budget_functions.py +169 -169
- boris/time_budget_widget.py +77 -89
- boris/transitions.py +41 -41
- boris/utilities.py +594 -226
- boris/version.py +3 -3
- boris/video_equalizer.py +16 -14
- boris/video_equalizer_ui.py +199 -130
- boris/video_operations.py +86 -28
- boris/view_df.py +104 -0
- boris/view_df_ui.py +75 -0
- boris/write_event.py +240 -136
- boris_behav_obs-9.7.12.dist-info/METADATA +139 -0
- boris_behav_obs-9.7.12.dist-info/RECORD +110 -0
- {boris_behav_obs-8.16.5.dist-info → boris_behav_obs-9.7.12.dist-info}/WHEEL +1 -1
- boris_behav_obs-9.7.12.dist-info/entry_points.txt +2 -0
- boris/README.TXT +0 -22
- boris/add_modifier.ui +0 -323
- boris/converters.ui +0 -289
- boris/core.qrc +0 -37
- boris/core.ui +0 -1571
- boris/edit_event.ui +0 -233
- boris/icons/logo_eye.ico +0 -0
- boris/map_creator.py +0 -982
- boris/observation.ui +0 -814
- boris/param_panel.ui +0 -379
- boris/preferences.ui +0 -537
- boris/project.ui +0 -1074
- boris/vlc_local.py +0 -90
- boris_behav_obs-8.16.5.dist-info/LICENSE.TXT +0 -674
- boris_behav_obs-8.16.5.dist-info/METADATA +0 -134
- boris_behav_obs-8.16.5.dist-info/RECORD +0 -107
- boris_behav_obs-8.16.5.dist-info/entry_points.txt +0 -2
- {boris → boris_behav_obs-9.7.12.dist-info/licenses}/LICENSE.TXT +0 -0
- {boris_behav_obs-8.16.5.dist-info → boris_behav_obs-9.7.12.dist-info}/top_level.txt +0 -0
boris/edit_event.ui
DELETED
|
@@ -1,233 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<ui version="4.0">
|
|
3
|
-
<class>Form</class>
|
|
4
|
-
<widget class="QWidget" name="Form">
|
|
5
|
-
<property name="geometry">
|
|
6
|
-
<rect>
|
|
7
|
-
<x>0</x>
|
|
8
|
-
<y>0</y>
|
|
9
|
-
<width>413</width>
|
|
10
|
-
<height>488</height>
|
|
11
|
-
</rect>
|
|
12
|
-
</property>
|
|
13
|
-
<property name="windowTitle">
|
|
14
|
-
<string>Edit event</string>
|
|
15
|
-
</property>
|
|
16
|
-
<layout class="QVBoxLayout" name="verticalLayout">
|
|
17
|
-
<item>
|
|
18
|
-
<layout class="QHBoxLayout" name="horizontalLayout_3">
|
|
19
|
-
<item>
|
|
20
|
-
<widget class="QLabel" name="label">
|
|
21
|
-
<property name="text">
|
|
22
|
-
<string>Time</string>
|
|
23
|
-
</property>
|
|
24
|
-
</widget>
|
|
25
|
-
</item>
|
|
26
|
-
<item>
|
|
27
|
-
<layout class="QHBoxLayout" name="horizontalLayout_2">
|
|
28
|
-
<item>
|
|
29
|
-
<widget class="QPushButton" name="pb_set_to_current_time">
|
|
30
|
-
<property name="text">
|
|
31
|
-
<string>Set to current time</string>
|
|
32
|
-
</property>
|
|
33
|
-
</widget>
|
|
34
|
-
</item>
|
|
35
|
-
<item>
|
|
36
|
-
<widget class="QCheckBox" name="cb_set_time_na">
|
|
37
|
-
<property name="text">
|
|
38
|
-
<string>Set NA</string>
|
|
39
|
-
</property>
|
|
40
|
-
</widget>
|
|
41
|
-
</item>
|
|
42
|
-
<item>
|
|
43
|
-
<spacer name="horizontalSpacer">
|
|
44
|
-
<property name="orientation">
|
|
45
|
-
<enum>Qt::Horizontal</enum>
|
|
46
|
-
</property>
|
|
47
|
-
<property name="sizeHint" stdset="0">
|
|
48
|
-
<size>
|
|
49
|
-
<width>40</width>
|
|
50
|
-
<height>20</height>
|
|
51
|
-
</size>
|
|
52
|
-
</property>
|
|
53
|
-
</spacer>
|
|
54
|
-
</item>
|
|
55
|
-
</layout>
|
|
56
|
-
</item>
|
|
57
|
-
</layout>
|
|
58
|
-
</item>
|
|
59
|
-
<item>
|
|
60
|
-
<layout class="QHBoxLayout" name="horizontalLayout_7">
|
|
61
|
-
<item>
|
|
62
|
-
<widget class="QLabel" name="lb_image_idx">
|
|
63
|
-
<property name="text">
|
|
64
|
-
<string>Image index</string>
|
|
65
|
-
</property>
|
|
66
|
-
</widget>
|
|
67
|
-
</item>
|
|
68
|
-
<item>
|
|
69
|
-
<widget class="QSpinBox" name="sb_image_idx">
|
|
70
|
-
<property name="maximum">
|
|
71
|
-
<number>10000000</number>
|
|
72
|
-
</property>
|
|
73
|
-
</widget>
|
|
74
|
-
</item>
|
|
75
|
-
<item>
|
|
76
|
-
<spacer name="horizontalSpacer_6">
|
|
77
|
-
<property name="orientation">
|
|
78
|
-
<enum>Qt::Horizontal</enum>
|
|
79
|
-
</property>
|
|
80
|
-
<property name="sizeHint" stdset="0">
|
|
81
|
-
<size>
|
|
82
|
-
<width>40</width>
|
|
83
|
-
<height>20</height>
|
|
84
|
-
</size>
|
|
85
|
-
</property>
|
|
86
|
-
</spacer>
|
|
87
|
-
</item>
|
|
88
|
-
</layout>
|
|
89
|
-
</item>
|
|
90
|
-
<item>
|
|
91
|
-
<layout class="QHBoxLayout" name="horizontalLayout_4">
|
|
92
|
-
<item>
|
|
93
|
-
<widget class="QLabel" name="lbSubject">
|
|
94
|
-
<property name="text">
|
|
95
|
-
<string>Subject</string>
|
|
96
|
-
</property>
|
|
97
|
-
</widget>
|
|
98
|
-
</item>
|
|
99
|
-
<item>
|
|
100
|
-
<widget class="QComboBox" name="cobSubject"/>
|
|
101
|
-
</item>
|
|
102
|
-
<item>
|
|
103
|
-
<spacer name="horizontalSpacer_2">
|
|
104
|
-
<property name="orientation">
|
|
105
|
-
<enum>Qt::Horizontal</enum>
|
|
106
|
-
</property>
|
|
107
|
-
<property name="sizeHint" stdset="0">
|
|
108
|
-
<size>
|
|
109
|
-
<width>40</width>
|
|
110
|
-
<height>20</height>
|
|
111
|
-
</size>
|
|
112
|
-
</property>
|
|
113
|
-
</spacer>
|
|
114
|
-
</item>
|
|
115
|
-
</layout>
|
|
116
|
-
</item>
|
|
117
|
-
<item>
|
|
118
|
-
<layout class="QHBoxLayout" name="horizontalLayout_5">
|
|
119
|
-
<item>
|
|
120
|
-
<widget class="QLabel" name="label_2">
|
|
121
|
-
<property name="text">
|
|
122
|
-
<string>Code</string>
|
|
123
|
-
</property>
|
|
124
|
-
</widget>
|
|
125
|
-
</item>
|
|
126
|
-
<item>
|
|
127
|
-
<widget class="QComboBox" name="cobCode"/>
|
|
128
|
-
</item>
|
|
129
|
-
<item>
|
|
130
|
-
<spacer name="horizontalSpacer_3">
|
|
131
|
-
<property name="orientation">
|
|
132
|
-
<enum>Qt::Horizontal</enum>
|
|
133
|
-
</property>
|
|
134
|
-
<property name="sizeHint" stdset="0">
|
|
135
|
-
<size>
|
|
136
|
-
<width>40</width>
|
|
137
|
-
<height>20</height>
|
|
138
|
-
</size>
|
|
139
|
-
</property>
|
|
140
|
-
</spacer>
|
|
141
|
-
</item>
|
|
142
|
-
</layout>
|
|
143
|
-
</item>
|
|
144
|
-
<item>
|
|
145
|
-
<layout class="QHBoxLayout" name="horizontalLayout_6">
|
|
146
|
-
<item>
|
|
147
|
-
<widget class="QLabel" name="lb_frame_idx">
|
|
148
|
-
<property name="text">
|
|
149
|
-
<string>Frame index</string>
|
|
150
|
-
</property>
|
|
151
|
-
</widget>
|
|
152
|
-
</item>
|
|
153
|
-
<item>
|
|
154
|
-
<widget class="QSpinBox" name="sb_frame_idx">
|
|
155
|
-
<property name="minimum">
|
|
156
|
-
<number>0</number>
|
|
157
|
-
</property>
|
|
158
|
-
<property name="maximum">
|
|
159
|
-
<number>100000000</number>
|
|
160
|
-
</property>
|
|
161
|
-
</widget>
|
|
162
|
-
</item>
|
|
163
|
-
<item>
|
|
164
|
-
<widget class="QCheckBox" name="cb_set_frame_idx_na">
|
|
165
|
-
<property name="text">
|
|
166
|
-
<string>Set NA</string>
|
|
167
|
-
</property>
|
|
168
|
-
</widget>
|
|
169
|
-
</item>
|
|
170
|
-
<item>
|
|
171
|
-
<spacer name="horizontalSpacer_5">
|
|
172
|
-
<property name="orientation">
|
|
173
|
-
<enum>Qt::Horizontal</enum>
|
|
174
|
-
</property>
|
|
175
|
-
<property name="sizeHint" stdset="0">
|
|
176
|
-
<size>
|
|
177
|
-
<width>40</width>
|
|
178
|
-
<height>20</height>
|
|
179
|
-
</size>
|
|
180
|
-
</property>
|
|
181
|
-
</spacer>
|
|
182
|
-
</item>
|
|
183
|
-
</layout>
|
|
184
|
-
</item>
|
|
185
|
-
<item>
|
|
186
|
-
<widget class="QLabel" name="label_4">
|
|
187
|
-
<property name="text">
|
|
188
|
-
<string>Comment</string>
|
|
189
|
-
</property>
|
|
190
|
-
</widget>
|
|
191
|
-
</item>
|
|
192
|
-
<item>
|
|
193
|
-
<widget class="QPlainTextEdit" name="leComment"/>
|
|
194
|
-
</item>
|
|
195
|
-
<item>
|
|
196
|
-
<layout class="QHBoxLayout" name="horizontalLayout">
|
|
197
|
-
<item>
|
|
198
|
-
<spacer name="horizontalSpacer_4">
|
|
199
|
-
<property name="orientation">
|
|
200
|
-
<enum>Qt::Horizontal</enum>
|
|
201
|
-
</property>
|
|
202
|
-
<property name="sizeHint" stdset="0">
|
|
203
|
-
<size>
|
|
204
|
-
<width>40</width>
|
|
205
|
-
<height>20</height>
|
|
206
|
-
</size>
|
|
207
|
-
</property>
|
|
208
|
-
</spacer>
|
|
209
|
-
</item>
|
|
210
|
-
<item>
|
|
211
|
-
<widget class="QPushButton" name="pbCancel">
|
|
212
|
-
<property name="text">
|
|
213
|
-
<string>Cancel</string>
|
|
214
|
-
</property>
|
|
215
|
-
</widget>
|
|
216
|
-
</item>
|
|
217
|
-
<item>
|
|
218
|
-
<widget class="QPushButton" name="pbOK">
|
|
219
|
-
<property name="text">
|
|
220
|
-
<string>OK</string>
|
|
221
|
-
</property>
|
|
222
|
-
<property name="default">
|
|
223
|
-
<bool>true</bool>
|
|
224
|
-
</property>
|
|
225
|
-
</widget>
|
|
226
|
-
</item>
|
|
227
|
-
</layout>
|
|
228
|
-
</item>
|
|
229
|
-
</layout>
|
|
230
|
-
</widget>
|
|
231
|
-
<resources/>
|
|
232
|
-
<connections/>
|
|
233
|
-
</ui>
|
boris/icons/logo_eye.ico
DELETED
|
Binary file
|