boris-behav-obs 8.16.6__py3-none-any.whl → 9.7.1__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.
Files changed (125) hide show
  1. boris/__init__.py +1 -1
  2. boris/__main__.py +1 -1
  3. boris/about.py +24 -40
  4. boris/add_modifier.py +88 -80
  5. boris/add_modifier_ui.py +235 -131
  6. boris/advanced_event_filtering.py +23 -29
  7. boris/analysis_plugins/__init__.py +0 -0
  8. boris/analysis_plugins/_latency.py +59 -0
  9. boris/analysis_plugins/irr_cohen_kappa.py +109 -0
  10. boris/analysis_plugins/irr_cohen_kappa_with_modifiers.py +112 -0
  11. boris/analysis_plugins/irr_weighted_cohen_kappa.py +157 -0
  12. boris/analysis_plugins/irr_weighted_cohen_kappa_with_modifiers.py +162 -0
  13. boris/analysis_plugins/list_of_dataframe_columns.py +22 -0
  14. boris/analysis_plugins/number_of_occurences.py +22 -0
  15. boris/analysis_plugins/number_of_occurences_by_independent_variable.py +54 -0
  16. boris/analysis_plugins/time_budget.py +61 -0
  17. boris/behav_coding_map_creator.py +228 -229
  18. boris/behavior_binary_table.py +33 -50
  19. boris/behaviors_coding_map.py +17 -18
  20. boris/boris_cli.py +6 -25
  21. boris/cmd_arguments.py +12 -1
  22. boris/coding_pad.py +16 -34
  23. boris/config.py +101 -49
  24. boris/config_file.py +55 -64
  25. boris/connections.py +105 -58
  26. boris/converters.py +13 -37
  27. boris/converters_ui.py +187 -110
  28. boris/cooccurence.py +250 -0
  29. boris/core.py +2108 -1275
  30. boris/core_qrc.py +15892 -10829
  31. boris/core_ui.py +941 -806
  32. boris/db_functions.py +17 -42
  33. boris/dev.py +134 -0
  34. boris/dialog.py +461 -242
  35. boris/duration_widget.py +9 -14
  36. boris/edit_event.py +61 -31
  37. boris/edit_event_ui.py +208 -97
  38. boris/event_operations.py +405 -281
  39. boris/events_cursor.py +25 -17
  40. boris/events_snapshots.py +36 -82
  41. boris/exclusion_matrix.py +4 -9
  42. boris/export_events.py +180 -203
  43. boris/export_observation.py +60 -73
  44. boris/external_processes.py +123 -98
  45. boris/geometric_measurement.py +427 -218
  46. boris/gui_utilities.py +91 -14
  47. boris/image_overlay.py +4 -4
  48. boris/import_observations.py +190 -98
  49. boris/ipc_mpv.py +304 -0
  50. boris/irr.py +20 -57
  51. boris/latency.py +31 -24
  52. boris/measurement_widget.py +14 -18
  53. boris/media_file.py +17 -19
  54. boris/menu_options.py +16 -6
  55. boris/modifier_coding_map_creator.py +1013 -0
  56. boris/modifiers_coding_map.py +7 -9
  57. boris/mpv2.py +127 -36
  58. boris/observation.py +493 -210
  59. boris/observation_operations.py +1010 -391
  60. boris/observation_ui.py +573 -363
  61. boris/observations_list.py +51 -58
  62. boris/otx_parser.py +74 -68
  63. boris/param_panel.py +45 -59
  64. boris/param_panel_ui.py +254 -138
  65. boris/player_dock_widget.py +91 -56
  66. boris/plot_data_module.py +18 -53
  67. boris/plot_events.py +56 -153
  68. boris/plot_events_rt.py +16 -30
  69. boris/plot_spectrogram_rt.py +80 -56
  70. boris/plot_waveform_rt.py +23 -48
  71. boris/plugins.py +431 -0
  72. boris/portion/__init__.py +18 -8
  73. boris/portion/const.py +35 -18
  74. boris/portion/dict.py +5 -5
  75. boris/portion/func.py +2 -2
  76. boris/portion/interval.py +21 -41
  77. boris/portion/io.py +41 -32
  78. boris/preferences.py +298 -123
  79. boris/preferences_ui.py +664 -225
  80. boris/project.py +293 -270
  81. boris/project_functions.py +610 -537
  82. boris/project_import_export.py +204 -213
  83. boris/project_ui.py +673 -441
  84. boris/qrc_boris.py +6 -3
  85. boris/qrc_boris5.py +6 -3
  86. boris/select_modifiers.py +62 -90
  87. boris/select_observations.py +19 -197
  88. boris/select_subj_behav.py +67 -39
  89. boris/state_events.py +51 -33
  90. boris/subjects_pad.py +6 -8
  91. boris/synthetic_time_budget.py +25 -17
  92. boris/time_budget_functions.py +169 -169
  93. boris/time_budget_widget.py +71 -86
  94. boris/transitions.py +41 -41
  95. boris/utilities.py +562 -222
  96. boris/version.py +3 -3
  97. boris/video_equalizer.py +16 -14
  98. boris/video_equalizer_ui.py +199 -130
  99. boris/video_operations.py +78 -28
  100. boris/view_df.py +104 -0
  101. boris/view_df_ui.py +75 -0
  102. boris/write_event.py +240 -136
  103. boris_behav_obs-9.7.1.dist-info/METADATA +140 -0
  104. boris_behav_obs-9.7.1.dist-info/RECORD +109 -0
  105. {boris_behav_obs-8.16.6.dist-info → boris_behav_obs-9.7.1.dist-info}/WHEEL +1 -1
  106. boris_behav_obs-9.7.1.dist-info/entry_points.txt +2 -0
  107. boris/README.TXT +0 -22
  108. boris/add_modifier.ui +0 -323
  109. boris/converters.ui +0 -289
  110. boris/core.qrc +0 -37
  111. boris/core.ui +0 -1571
  112. boris/edit_event.ui +0 -233
  113. boris/icons/logo_eye.ico +0 -0
  114. boris/map_creator.py +0 -982
  115. boris/observation.ui +0 -814
  116. boris/param_panel.ui +0 -379
  117. boris/preferences.ui +0 -537
  118. boris/project.ui +0 -1074
  119. boris/vlc_local.py +0 -90
  120. boris_behav_obs-8.16.6.dist-info/LICENSE.TXT +0 -674
  121. boris_behav_obs-8.16.6.dist-info/METADATA +0 -134
  122. boris_behav_obs-8.16.6.dist-info/RECORD +0 -106
  123. boris_behav_obs-8.16.6.dist-info/entry_points.txt +0 -2
  124. {boris → boris_behav_obs-9.7.1.dist-info/licenses}/LICENSE.TXT +0 -0
  125. {boris_behav_obs-8.16.6.dist-info → boris_behav_obs-9.7.1.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