aalkaswan commited on
Commit
7df4fdb
·
verified ·
1 Parent(s): 93b2958

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -170,7 +170,8 @@ def plot_scatter_tab5(cat, x, y, z, col):
170
  print("A>0:", (pivot_df['A'] > 0).sum())
171
  print("Any NaN?", pivot_df[['H','R','A']].isna().any().any())
172
  print("First ten:", pivot_df[['model', 'H','R','A','Organisation']].head(10))
173
- fig = px.scatter_3d(pivot_df, x='H', y='R', z='A', hover_name="model", color='Organisation')
 
174
  fig.write_html("test_plot.html")
175
  return fig
176
 
 
170
  print("A>0:", (pivot_df['A'] > 0).sum())
171
  print("Any NaN?", pivot_df[['H','R','A']].isna().any().any())
172
  print("First ten:", pivot_df[['model', 'H','R','A','Organisation']].head(10))
173
+ # fig = px.scatter_3d(pivot_df, x='H', y='R', z='A', hover_name="model", color='Organisation')
174
+ fig = px.scatter_3d(pivot_df, x='H', y='R', z='A', hover_name="model")
175
  fig.write_html("test_plot.html")
176
  return fig
177