ccm commited on
Commit
b9c59dd
·
1 Parent(s): 8e6c03a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -2,10 +2,10 @@ import pandas
2
  import numpy
3
  import gradio
4
  import matplotlib.pyplot
5
- import matplotlib.collections
6
  import math
7
 
8
- data = pandas.read_csv("/1-s2.0-S2352340918302014-mmc2.csv")
 
9
 
10
  def how_many_designs(team: int, participant: int):
11
  n = len(numpy.unique(data[(data['Team'] == team) & (data['Participant'] == participant)]['Design']))
 
2
  import numpy
3
  import gradio
4
  import matplotlib.pyplot
 
5
  import math
6
 
7
+
8
+ data = pandas.read_csv("1-s2.0-S2352340918302014-mmc2.csv")
9
 
10
  def how_many_designs(team: int, participant: int):
11
  n = len(numpy.unique(data[(data['Team'] == team) & (data['Participant'] == participant)]['Design']))