(species, watch=True)
| 264 | w_sex = pn.widgets.MultiSelect(name='Sex', value=['MALE'], options=['MALE', 'FEMALE']) |
| 265 | |
| 266 | def load_data(species, watch=True): |
| 267 | if watch: |
| 268 | load_data.COUNT += 1 |
| 269 | return df.loc[df['species'] == species] |
| 270 | |
| 271 | load_data.COUNT = 0 |
| 272 |
no outgoing calls
no test coverage detected
searching dependent graphs…