team | player | event | event_name | event_description | quarter | seconds | x | y | time | game_number | round | phase | opponents | home | win | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
0 | Team | Di Francesco | 18 | Entr | Entrata in campo | 1 | 600.0 | 0.0 | 0.0 | 2025-02-09 17:11:58 | 1 | 1 | Andata | PORTO S.ELPIDIO | False | True |
1 | Team | Colotti | 18 | Entr | Entrata in campo | 1 | 600.0 | 0.0 | 0.0 | 2025-02-09 17:11:58 | 1 | 1 | Andata | PORTO S.ELPIDIO | False | True |
2 | Team | Dusels | 18 | Entr | Entrata in campo | 1 | 600.0 | 0.0 | 0.0 | 2025-02-09 17:11:58 | 1 | 1 | Andata | PORTO S.ELPIDIO | False | True |
3 | Team | Aloi | 18 | Entr | Entrata in campo | 1 | 600.0 | 0.0 | 0.0 | 2025-02-09 17:11:58 | 1 | 1 | Andata | PORTO S.ELPIDIO | False | True |
4 | Team | Diana | 18 | Entr | Entrata in campo | 1 | 600.0 | 0.0 | 0.0 | 2025-02-09 17:11:58 | 1 | 1 | Andata | PORTO S.ELPIDIO | False | True |
... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... |
7706 | Team | Di Francesco | 19 | Usci | Uscita dal campo | 4 | 0.0 | 0.0 | 0.0 | 2025-03-30 17:45:34 | 24 | 11 | Ritorno | STAMURA ANCONA | True | False |
7707 | Team | Campana | 19 | Usci | Uscita dal campo | 4 | 0.0 | 0.0 | 0.0 | 2025-03-30 17:45:35 | 24 | 11 | Ritorno | STAMURA ANCONA | True | False |
7708 | Team | Marcantognini | 19 | Usci | Uscita dal campo | 4 | 0.0 | 0.0 | 0.0 | 2025-03-30 17:45:35 | 24 | 11 | Ritorno | STAMURA ANCONA | True | False |
7709 | Team | Lulaj | 19 | Usci | Uscita dal campo | 4 | 0.0 | 0.0 | 0.0 | 2025-03-30 17:45:35 | 24 | 11 | Ritorno | STAMURA ANCONA | True | False |
7710 | Team | Manna | 19 | Usci | Uscita dal campo | 4 | 0.0 | 0.0 | 0.0 | 2025-03-30 17:45:35 | 24 | 11 | Ritorno | STAMURA ANCONA | True | False |
6579 rows × 16 columns
--------------------------------------------------------------------------- ValueError Traceback (most recent call last) Cell In[2], line 21 18 x = list(gx) 19 y = list(dfy.groupby('player').count()['event']) ---> 21 fig = Analytics.scatterChart(players, x, y, players_info, descrx, descry, size_on_time=True, show_bisector=True) 22 fig File ~/notebooks/pyBasket/Analytics.py:160, in scatterChart(players, x, y, players_info, descrx, descry, size_on_time, show_bisector, do_average) 154 fig.add_trace(go.Scatter(x=[0,m], y=[0,m], mode='lines', marker=dict(color='rgb(127, 127, 127)'), line=dict(dash='dash'))) 156 fig.add_trace(go.Scatter(x=x, y=y, text=players, mode='markers+text', marker=dict(size=sizes, color=colors), 157 customdata=customdata, name='', 158 hovertemplate='<b>%%{text}</b><br>%s: %%{x:.1f}<br>%s: %%{y:.1f}<br>%%{customdata}'%(descrx,descry))) --> 160 fig.update_layout(height=800, template='plotly_white', font_family='Arial', xaxis_title=descrx, yaxis_title=descry, showlegend=False, 161 margin=dict(l=70, r=20, b=30, t=70), 162 title=dict(text='<b>' + descrx + ' vs. ' + descry + '</b><br><span style="font-size: 15px;">' + comment + '</span>', font=dict(size=20, weight=700))) 163 return fig File /opt/conda/lib/python3.10/site-packages/plotly/graph_objs/_figure.py:775, in Figure.update_layout(self, dict1, overwrite, **kwargs) 749 def update_layout(self, dict1=None, overwrite=False, **kwargs) -> "Figure": 750 """ 751 752 Update the properties of the figure's layout with a dict and/or with (...) 773 774 """ --> 775 return super(Figure, self).update_layout(dict1, overwrite, **kwargs) File /opt/conda/lib/python3.10/site-packages/plotly/basedatatypes.py:1393, in BaseFigure.update_layout(self, dict1, overwrite, **kwargs) 1369 def update_layout(self, dict1=None, overwrite=False, **kwargs): 1370 """ 1371 Update the properties of the figure's layout with a dict and/or with 1372 keyword arguments. (...) 1391 The Figure object that the update_layout method was called on 1392 """ -> 1393 self.layout.update(dict1, overwrite=overwrite, **kwargs) 1394 return self File /opt/conda/lib/python3.10/site-packages/plotly/basedatatypes.py:5136, in BasePlotlyType.update(self, dict1, overwrite, **kwargs) 5134 with self.figure.batch_update(): 5135 BaseFigure._perform_update(self, dict1, overwrite=overwrite) -> 5136 BaseFigure._perform_update(self, kwargs, overwrite=overwrite) 5137 else: 5138 BaseFigure._perform_update(self, dict1, overwrite=overwrite) File /opt/conda/lib/python3.10/site-packages/plotly/basedatatypes.py:3918, in BaseFigure._perform_update(plotly_obj, update_obj, overwrite) 3912 validator = plotly_obj._get_prop_validator(key) 3914 if isinstance(validator, CompoundValidator) and isinstance(val, dict): 3915 3916 # Update compound objects recursively 3917 # plotly_obj[key].update(val) -> 3918 BaseFigure._perform_update(plotly_obj[key], val) 3919 elif isinstance(validator, CompoundArrayValidator): 3920 if plotly_obj[key]: 3921 # plotly_obj has an existing non-empty array for key 3922 # In this case we merge val into the existing elements File /opt/conda/lib/python3.10/site-packages/plotly/basedatatypes.py:3918, in BaseFigure._perform_update(plotly_obj, update_obj, overwrite) 3912 validator = plotly_obj._get_prop_validator(key) 3914 if isinstance(validator, CompoundValidator) and isinstance(val, dict): 3915 3916 # Update compound objects recursively 3917 # plotly_obj[key].update(val) -> 3918 BaseFigure._perform_update(plotly_obj[key], val) 3919 elif isinstance(validator, CompoundArrayValidator): 3920 if plotly_obj[key]: 3921 # plotly_obj has an existing non-empty array for key 3922 # In this case we merge val into the existing elements File /opt/conda/lib/python3.10/site-packages/plotly/basedatatypes.py:3895, in BaseFigure._perform_update(plotly_obj, update_obj, overwrite) 3893 err = _check_path_in_prop_tree(plotly_obj, key, error_cast=ValueError) 3894 if err is not None: -> 3895 raise err 3897 # Convert update_obj to dict 3898 # -------------------------- 3899 if isinstance(update_obj, BasePlotlyType): ValueError: Invalid property specified for object of type plotly.graph_objs.layout.title.Font: 'weight' Did you mean "size"? Valid properties: color family HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on- premise) generates images on a server, where only a select number of fonts are installed and supported. These include "Arial", "Balto", "Courier New", "Droid Sans",, "Droid Serif", "Droid Sans Mono", "Gravitas One", "Old Standard TT", "Open Sans", "Overpass", "PT Sans Narrow", "Raleway", "Times New Roman". size Did you mean "size"? Bad property path: weight ^^^^^^