We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f890fd4 commit aa3f655Copy full SHA for aa3f655
nba-proxy/requirements.txt
@@ -1,5 +1,5 @@
1
reflex>=0.8.0
2
-pandas
3
-plotly
4
-statsmodels
5
-scipy<1.16.0
+pandas==3.0.1
+plotly==6.6.0
+statsmodels==0.14.6
+scipy==1.17.1
nba/nba/views/table.py
@@ -5,7 +5,7 @@
6
nba_overview = "https://media.geeksforgeeks.org/wp-content/uploads/nba.csv"
7
nba_data = pd.read_csv(nba_overview)
8
-college = ["All"] + sorted(nba_data["College"].unique().astype(str))
+college = ["All"] + sorted(nba_data["College"].dropna().unique())
9
10
11
class State(rx.State):
nba/requirements.txt
0 commit comments